packages feed

riak 0.3.0.0 → 0.3.0.1

raw patch · 3 files changed

+8/−1 lines, 3 files

Files

riak.cabal view
@@ -1,5 +1,5 @@ name:                riak-version:             0.3.0.0+version:             0.3.0.1 synopsis:            A Haskell client for the Riak decentralized data store description:   A Haskell client library for the Riak decentralized data
src/Network/Riak/Resolvable/Internal.hs view
@@ -61,6 +61,12 @@     resolve = mappend     {-# INLINE resolve #-} +instance (Resolvable a) => Resolvable (Maybe a) where+    resolve (Just a)   (Just b) = Just (resolve a b)+    resolve a@(Just _) _        = a+    resolve _          b        = b+    {-# INLINE resolve #-}+ get :: (Resolvable a) =>        (Connection -> Bucket -> Key -> R -> IO (Maybe ([a], VClock)))        -> (Connection -> Bucket -> Key -> R -> IO (Maybe (a, VClock)))
src/Network/Riak/Tag.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE MultiParamTypeClasses #-}+{-# OPTIONS_GHC -fno-warn-orphans #-}  -- | -- Module:      Network.Riak.Content