packages feed

io-streams 1.0.0.0 → 1.0.0.1

raw patch · 1 files changed

+4/−4 lines, 1 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

io-streams.cabal view
@@ -1,5 +1,5 @@ Name:                io-streams-Version:             1.0.0.0+Version:             1.0.0.1 License:             BSD3 License-file:        LICENSE Category:            Data, Network, IO-Streams@@ -52,11 +52,11 @@   @   ghci> input \<- Streams.fromByteString \"long string\"   ghci> wrapped \<- Streams.takeBytes 4 input-  ghci> read wrapped+  ghci> Streams.read wrapped   Just \"long\"-  ghci> read wrapped+  ghci> Streams.read wrapped   Nothing-  ghci> read input+  ghci> Streams.read input   Just \" string\"   @   .