diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Change log
 
+## v0.0.7 (2015-03-19)
+
+-   Fixed link in Hackage documentation.
+
 ## v0.0.6 (2015-03-19)
 
 -   Switch from Bitbucket to GitHub.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,3 +1,50 @@
-# Blunt
+<h1 align="center">
+    <a href="https://github.com/tfausak/blunt">
+        Blunt
+    </a>
+</h1>
 
-Point-free Haskell as a service.
+<p align="center">
+    Blunt makes Haskell expressions pointfree.
+</p>
+
+<p align="center">
+    <a href="https://hackage.haskell.org/package/blunt">
+        <img alt="" src="https://img.shields.io/hackage/v/blunt.svg">
+    </a>
+    <a href="http://packdeps.haskellers.com/feed?needle=blunt">
+        <img alt="" src="https://img.shields.io/hackage-deps/v/blunt.svg">
+    </a>
+</p>
+
+<hr>
+
+## Install
+
+``` sh
+$ cabal update
+$ cabal install 'blunt ==0.0.*'
+```
+
+## Develop
+
+``` sh
+$ git clone https://github.com/tfausak/blunt
+$ cd blunt
+$ cabal sandbox init
+$ cabal install happy
+$ cabal install
+```
+
+## Deploy
+
+``` sh
+$ heroku create
+$ git checkout -b deploy
+$ echo 'web: ./blunt' > Procfile
+$ cp dist/build/blunt/blunt .
+$ touch requirements.txt
+$ git add Procfile blunt requirements.txt
+$ git commit -m v0.0.7
+$ git push heroku deploy:master
+```
diff --git a/blunt.cabal b/blunt.cabal
--- a/blunt.cabal
+++ b/blunt.cabal
@@ -1,5 +1,5 @@
 name: blunt
-version: 0.0.6
+version: 0.0.7
 cabal-version: >=1.10
 build-type: Simple
 license: MIT
@@ -7,7 +7,7 @@
 maintainer: Taylor Fausak <taylor@fausak.me>
 synopsis: Point-free Haskell as a service.
 description:
-    https://github.com/tfausak/blunt
+    <https://github.com/tfausak/blunt>
 category: Web
 extra-source-files:
     CHANGELOG.md
