packages feed

hedis 0.9.6 → 0.9.7

raw patch · 4 files changed

+7/−3 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Database.Redis: returnDecode :: (RedisCtx m f, RedisResult a) => Reply -> m (f a)

Files

CHANGELOG view
@@ -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)
hedis.cabal view
@@ -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.
src/Database/Redis.hs view
@@ -139,7 +139,7 @@     -- * The Redis Monad     Redis(), runRedis,     unRedis, reRedis,-    RedisCtx(), MonadRedis(..),+    RedisCtx(..), MonadRedis(..),      -- * Connection     Connection, connect, checkedConnect,
src/Database/Redis/Core.hs view
@@ -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.