diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for influxdb
 
+## v1.3.0.1 - 2018-03-06
+
+* Relax upper version bounds for doctest and QuickCheck
+
 ## v1.3.0 - 2018-03-05
 
 * Relax upper version bound for base ([#51](https://github.com/maoe/influxdb-haskell/pull/51))
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
-Haskell client library for InfluxDB
-==========
+# Haskell client library for InfluxDB
 [![Build Status](https://travis-ci.org/maoe/influxdb-haskell.svg?branch=master)](https://travis-ci.org/maoe/influxdb-haskell)
 [![Hackage](https://img.shields.io/hackage/v/influxdb.svg)](https://hackage.haskell.org/package/influxdb)
 [![Hackage-Deps](https://img.shields.io/hackage-deps/v/influxdb.svg)](http://packdeps.haskellers.com/feed?needle=influxdb)
@@ -7,8 +6,15 @@
 
 Currently this library is tested against InfluxDB 1.4.
 
-Contact information
-----------
+## Getting started
+
+There is [a quick start guide](https://hackage.haskell.org/package/influxdb/docs/Database-InfluxDB.html) on Hackage.
+
+## Running tests
+
+Either `cabal new-test` or `stack test` runs the doctests in Haddock comments. Note that they need a local running InfluxDB server.
+
+## Contact information
 
 Contributions and bug reports are welcome!
 
diff --git a/influxdb.cabal b/influxdb.cabal
--- a/influxdb.cabal
+++ b/influxdb.cabal
@@ -1,5 +1,5 @@
 name: influxdb
-version: 1.3.0
+version: 1.3.0.1
 synopsis: Haskell client library for InfluxDB
 description:
   @influxdb@ is a Haskell client library for InfluxDB.
@@ -114,8 +114,8 @@
   main-is:             doctests.hs
   build-depends:
       base
-    , doctest >= 0.11.3 && < 0.14
-    , QuickCheck ==2.10.*
+    , doctest >= 0.11.3 && < 0.15
+    , QuickCheck >= 2.10 && < 2.12
     , influxdb
     , template-haskell
   ghc-options: -Wall -threaded
