diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for password
 
+## 2.0.0.1
+
+-   Fixed README markdown for hackage.
+
 ## 2.0.0.0
 
 -   Complete overhaul of the library to include hashing and checking
diff --git a/README b/README
deleted file mode 100644
--- a/README
+++ /dev/null
@@ -1,20 +0,0 @@
-# password
-
-[![Build Status](https://secure.travis-ci.org/cdepillabout/password.svg)](http://travis-ci.org/cdepillabout/password)
-[![Hackage](https://img.shields.io/hackage/v/password.svg)](https://hackage.haskell.org/package/password)
-[![Stackage LTS](http://stackage.org/package/password/badge/lts)](http://stackage.org/lts/package/password)
-[![Stackage Nightly](http://stackage.org/package/password/badge/nightly)](http://stackage.org/nightly/package/password)
-[![BSD3 license](https://img.shields.io/badge/license-BSD3-blue.svg)](./LICENSE)
-
-This library provides datatypes and functions for working with passwords and
-password hashes in Haskell.
-
-Currently supports the following algorithms:
-
-* `PBKDF2`
-* `bcrypt`
-* `scrypt`
-* `Argon2`
-
-Also, see the [password-instances](https://hackage.haskell.org/package/password-instances)
-package for instances for common typeclasses.
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,20 @@
+# password
+
+[![Build Status](https://secure.travis-ci.org/cdepillabout/password.svg)](http://travis-ci.org/cdepillabout/password)
+[![Hackage](https://img.shields.io/hackage/v/password.svg)](https://hackage.haskell.org/package/password)
+[![Stackage LTS](http://stackage.org/package/password/badge/lts)](http://stackage.org/lts/package/password)
+[![Stackage Nightly](http://stackage.org/package/password/badge/nightly)](http://stackage.org/nightly/package/password)
+[![BSD3 license](https://img.shields.io/badge/license-BSD3-blue.svg)](./LICENSE)
+
+This library provides datatypes and functions for working with passwords and
+password hashes in Haskell.
+
+Currently supports the following algorithms:
+
+* `PBKDF2`
+* `bcrypt`
+* `scrypt`
+* `Argon2`
+
+Also, see the [password-instances](https://hackage.haskell.org/package/password-instances)
+package for instances for common typeclasses.
diff --git a/password.cabal b/password.cabal
--- a/password.cabal
+++ b/password.cabal
@@ -1,7 +1,7 @@
 cabal-version: 1.12
 
 name:           password
-version:        2.0.0.0
+version:        2.0.0.1
 category:       Data
 synopsis:       Hashing and checking of passwords
 description:    A library providing functionality for working with plain-text and hashed passwords with different types of algorithms.
@@ -14,7 +14,7 @@
 license-file:   LICENSE
 build-type:     Custom
 extra-source-files:
-    README
+    README.md
     ChangeLog.md
 
 custom-setup
