diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for tmp-proc-redis
 
+## 0.5.0.1 -- 2021-09-29
+
+* Relax the upper bound of the hedis dependency
+
 ## 0.5.0.0 -- 2021-09-28
 
 * First version. Extracted from an unreleased version of the tmp-proc library
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,8 @@
 # tmp-proc-redis
 
+[![Hackage](https://img.shields.io/hackage/v/tmp-proc-redis.svg)](https://hackage.haskell.org/package/tmp-proc-redis)
+[![BSD-3.0 license](https://img.shields.io/badge/license-BSD--3.0-blue.svg)](https://github.com/adetokunbo/tmp-proc/blob/master/tmp-proc-redis/LICENSE)
+
 `tmp-proc-redis` provides an example of using `tmp-proc` to launch dockerized
 Redis in integration tests.
 
diff --git a/tmp-proc-redis.cabal b/tmp-proc-redis.cabal
--- a/tmp-proc-redis.cabal
+++ b/tmp-proc-redis.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               tmp-proc-redis
-version:            0.5.0.0
+version:            0.5.0.1
 synopsis:           Shows how to run redis as a tmp proc
 description:
   An example of using tmp-proc to launch dockerized redis in integration tests.
@@ -29,7 +29,7 @@
   build-depends:
     , base        >=4.11     && <4.16
     , bytestring  >=0.10.8.2 && <0.12
-    , hedis       >=0.10.4   && <0.15
+    , hedis       >=0.10.4   && <0.16
     , text        ^>=1.2.3
     , tmp-proc    >=0.5.0.0  && <0.6.0.0
 
