hedis-pile 0.2.1 → 0.2.2
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hedis-pile.cabal +1/−1
- src/Database/Redis/Pile.hs +3/−3
hedis-pile.cabal view
@@ -1,5 +1,5 @@ name: hedis-pile -version: 0.2.1 +version: 0.2.2 cabal-version: >= 1.8 build-type: Simple stability: Experimental
src/Database/Redis/Pile.hs view
@@ -39,19 +39,19 @@ -- > runRedis conn $ do -- > -- do it -- > r <- pile "myprefix" "mykey" (Just ("etag", "etag")) $ --- > return ([("etag", "etag"), ("val", "myval")], Nothing, Nothing) +-- > return ([("etag", "etag"), ("val", "myval")], Nothing, []) -- > liftIO $ print r -- > -- Just [("etag", "etag"), ("val", "myval")] -- > -- > -- once again -- > r <- pile "myprefix" "mykey" (Just ("etag", "etag")) $ --- > return ([("etag", "etag"), ("val", "myval")], Nothing, Nothing) +-- > return ([("etag", "etag"), ("val", "myval")], Nothing, []) -- > liftIO $ print r -- > -- Nothing -- > -- > -- and again without expect -- > r <- pile "myprefix" "mykey" Nothing $ --- > return ([("etag", "etag"), ("val", "myval")], Nothing, Nothing) +-- > return ([("etag", "etag"), ("val", "myval")], Nothing, []) -- > liftIO $ print r -- > -- Just [("etag", "etag"), ("val", "myval")] pile ::