cereal-enumerator 0.2 → 0.2.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
Data/Serialize/Get/Enumerator.hs view
@@ -34,6 +34,6 @@ loop p (x:xs) | BS.null x = loop p xs | otherwise = case p x of- Done r bs -> yield r $ Chunks (bs:xs)+ Done r bs -> yield r $ Chunks $ if BS.null bs then xs else bs:xs Partial c -> loop c xs Fail s -> throwError (ParseError s)
cereal-enumerator.cabal view
@@ -1,5 +1,5 @@ name: cereal-enumerator-version: 0.2+version: 0.2.1 synopsis: Deserialize things with cereal and enumerator license: PublicDomain author: Patrick Palka