cereal 0.3.2.0 → 0.3.3.0
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Data.Serialize: decodeLazy :: Serialize a => ByteString -> Either String a
+ Data.Serialize: encodeLazy :: Serialize a => a -> ByteString
Files
- cereal.cabal +1/−1
- src/Data/Serialize.hs +2/−2
cereal.cabal view
@@ -1,5 +1,5 @@ name: cereal-version: 0.3.2.0+version: 0.3.3.0 license: BSD3 license-file: LICENSE author: Lennart Kolmodin <kolmodin@dtek.chalmers.se>,
src/Data/Serialize.hs view
@@ -21,8 +21,8 @@ -- $example -- * Serialize serialisation- , encode- , decode+ , encode, encodeLazy+ , decode, decodeLazy , module Data.Serialize.Get , module Data.Serialize.Put