diff --git a/AlgorithmW.cabal b/AlgorithmW.cabal
--- a/AlgorithmW.cabal
+++ b/AlgorithmW.cabal
@@ -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
diff --git a/ChangeLog.md b/ChangeLog.md
new file mode 100644
--- /dev/null
+++ b/ChangeLog.md
@@ -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.
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,2 @@
+# AlgorithmW
+Example implementation of Algorithm W for Hindley-Milner type inference
diff --git a/changelog.txt b/changelog.txt
deleted file mode 100644
--- a/changelog.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-0.1.0.1
-- Added bibliography.bib and changelog.txt to the tarball.
-
-0.1.0.0
-- Initial version.
