diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,9 @@
 # Changelog for Hedis
 
+## 0.9.7
+
+Expose returnDecode method of RedisCtx (see issue #83)
+
 ## 0.9.2
 
 * Added multithreaded pub/sub message processing (see PR #77)
diff --git a/hedis.cabal b/hedis.cabal
--- a/hedis.cabal
+++ b/hedis.cabal
@@ -1,5 +1,5 @@
 name:               hedis
-version:            0.9.6
+version:            0.9.7
 synopsis:
     Client library for the Redis datastore: supports full command set,
     pipelining.
diff --git a/src/Database/Redis.hs b/src/Database/Redis.hs
--- a/src/Database/Redis.hs
+++ b/src/Database/Redis.hs
@@ -139,7 +139,7 @@
     -- * The Redis Monad
     Redis(), runRedis,
     unRedis, reRedis,
-    RedisCtx(), MonadRedis(..),
+    RedisCtx(..), MonadRedis(..),
 
     -- * Connection
     Connection, connect, checkedConnect,
diff --git a/src/Database/Redis/Core.hs b/src/Database/Redis/Core.hs
--- a/src/Database/Redis/Core.hs
+++ b/src/Database/Redis/Core.hs
@@ -41,7 +41,7 @@
 data RedisEnv = Env { envConn :: PP.Connection, envLastReply :: IORef Reply }
 
 -- |This class captures the following behaviour: In a context @m@, a command
---  will return it's result wrapped in a \"container\" of type @f@.
+--  will return its result wrapped in a \"container\" of type @f@.
 --
 --  Please refer to the Command Type Signatures section of this page for more
 --  information.
