packages feed

hedis 0.11.0 → 0.11.1

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG view
@@ -1,5 +1,9 @@ # Changelog for Hedis +## 0.11.1++* PR #129. Fix tests+ ## 0.11.0  * PR #126. Fixes for network 2.8 and 3.0
hedis.cabal view
@@ -1,5 +1,5 @@ name:               hedis-version:            0.11.0+version:            0.11.1 synopsis:     Client library for the Redis datastore: supports full command set,     pipelining.
test/Test.hs view
@@ -726,7 +726,7 @@     xreadGroupOpts       "somegroup"       "consumer1"-      [("somestream", "0")]+      [("somestream", ">")]       (defaultXreadOpts {recordCount = Just 2}) >>=?       Just         [ XReadResponse@@ -755,7 +755,7 @@     xadd "somestream" "121" [("key1", "value1")]     xadd "somestream" "122" [("key2", "value2")]     xgroupCreate "somestream" "somegroup" "0"-    xreadGroupOpts "somegroup" "consumer1" [("somestream", "0")] (defaultXreadOpts { recordCount = Just 2})+    xreadGroupOpts "somegroup" "consumer1" [("somestream", ">")] (defaultXreadOpts { recordCount = Just 2})     consumerInfos <- xinfoConsumers "somestream" "somegroup"     liftIO $ case consumerInfos of         Left reply -> HUnit.assertFailure $ "Redis error: " ++ show reply