AlgorithmW 0.1.0.1 → 0.1.0.2
raw patch · 4 files changed
+19/−9 lines, 4 filesdep ~mtl
Dependency ranges changed: mtl
Files
- AlgorithmW.cabal +9/−4
- ChangeLog.md +8/−0
- README.md +2/−0
- changelog.txt +0/−5
AlgorithmW.cabal view
@@ -1,11 +1,12 @@ name: AlgorithmW-version: 0.1.0.1+version: 0.1.0.2 synopsis: Example implementation of Algorithm W for Hindley-Milner type inference. description: Complete implementation of the classic algorithm W for Hindley-Milner polymorphic type inference in Haskell.-homepage: http://hackage.haskell.org/package/AlgorithmW+homepage: https://github.com/mgrabmueller/AlgorithmW+bug-reports: https://github.com/mgrabmueller/AlgorithmW/issues license: BSD3 license-file: LICENSE author: Martin Grabmueller@@ -14,9 +15,13 @@ build-type: Simple cabal-version: >=1.10 -extra-source-files: bibliography.bib changelog.txt+extra-source-files: bibliography.bib README.md ChangeLog.md +source-repository head+ type: git+ location: https://github.com/mgrabmueller/disassembler+ executable AlgorithmW main-is: AlgorithmW.lhs- build-depends: base >=4.5 && <4.8, containers >=0.4 && <0.6, mtl >=2.1 && <2.2, pretty >=1.1 && <1.2+ build-depends: base >=4.5 && <4.8, containers >=0.4 && <0.6, mtl >=2.1 && <2.3, pretty >=1.1 && <1.2 default-language: Haskell2010
+ ChangeLog.md view
@@ -0,0 +1,8 @@+# 0.1.0.2+* Updated links in .cabal file to point to Github.++# 0.1.0.1+* Added bibliography.bib and changelog.txt to the tarball.++# 0.1.0.0+* Initial version.
+ README.md view
@@ -0,0 +1,2 @@+# AlgorithmW+Example implementation of Algorithm W for Hindley-Milner type inference
− changelog.txt
@@ -1,5 +0,0 @@-0.1.0.1-- Added bibliography.bib and changelog.txt to the tarball.--0.1.0.0-- Initial version.