packages feed

msgpack 0.6.0.0 → 0.6.0.1

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

msgpack.cabal view
@@ -1,5 +1,5 @@ Name:               msgpack-Version:            0.6.0.0+Version:            0.6.0.1 Synopsis:           A Haskell implementation of MessagePack Description:   A Haskell implementation of MessagePack <http://msgpack.org/>
src/Data/MessagePack/Object.hs view
@@ -75,7 +75,7 @@     , liftM ObjectDouble get     , liftM ObjectRAW get     , liftM ObjectArray get-    , liftM ObjectMap get+    , liftM (ObjectMap . unAssoc) get     ]  instance Packable Object where@@ -96,7 +96,7 @@       ObjectArray arr ->         put arr       ObjectMap m ->-        put m+        put $ Assoc m  -- | The class of types serializable to and from MessagePack object class (Unpackable a, Packable a) => OBJECT a where