├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── CHANGELOG.md ├── Data └── Versions.hs ├── LICENSE ├── README.md ├── stack.yaml ├── test └── Test.hs └── versions.cabal /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Data/Versions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/Data/Versions.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/README.md -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-23.7 2 | -------------------------------------------------------------------------------- /test/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/test/Test.hs -------------------------------------------------------------------------------- /versions.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/versions/HEAD/versions.cabal --------------------------------------------------------------------------------