list-t-text 0.2.0.0 → 0.2.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
- hspec/Main.hs +2/−2
- list-t-text.cabal +1/−1
hspec/Main.hs view
@@ -13,10 +13,10 @@ main = hspec $ do- context "utf8ByteString" $ do+ context "decodeUTF8" $ do it "back and forth" $ property $ \text ->- TE.encodeUtf8 text & streamByteString 3 & utf8ByteString & L.toList & runIdentity & mconcat &+ TE.encodeUtf8 text & streamByteString 3 & decodeUTF8 & L.toList & runIdentity & mconcat & (==) text streamByteString :: Monad m => Int -> ByteString -> L.ListT m ByteString
list-t-text.cabal view
@@ -1,7 +1,7 @@ name: list-t-text version:- 0.2.0.0+ 0.2.0.1 synopsis: A streaming text codec category: