diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.6.0.2
+
+* Allow Cabal 1.20.*
+
 ## 0.6.0.1
 
 * Fixed link to README in .cabal
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,17 @@
+# Bumper
 
+[![Build Status](https://travis-ci.org/silkapp/bumper.svg?branch=master)](https://travis-ci.org/silkapp/bumper)
+
 Bumper is a tool for working with cabal packages. It lets you manage the version bounds of packages by transitively bumping packages (and their dependencies transitively), without you needing to edit the cabal files manually.
 
 It's useful if you have a set of packages that you develop together.
+
+You can install the latest version from [Hackage](http://hackage.haskell.org/package/bumper)
+```shell
+$ cabal install bumper
+```
+or try the git version if you are feeling adventurous.
+
 
 To get started you should have all projects under a common directory, such as
 ```
diff --git a/bumper.cabal b/bumper.cabal
--- a/bumper.cabal
+++ b/bumper.cabal
@@ -1,5 +1,5 @@
 Name:             bumper
-Version:          0.6.0.1
+Version:          0.6.0.2
 Synopsis:         Automatically bump package versions, also transitively.
 Description:      Automatically bump package versions, also transitively.
                   .
@@ -19,7 +19,7 @@
 
 Executable bumper
   Build-Depends:    base == 4.*
-                  , Cabal        >= 1.6    && < 1.19
+                  , Cabal        >= 1.6    && < 1.22
                   , containers   >= 0.4    && < 0.6
                   , fclabels     >= 1.0    && < 2.1
                   , process      >= 1.0    && < 1.3
