io-streams 1.4.0.0 → 1.4.1.0
raw patch · 5 files changed
+11/−3 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ System.IO.Streams: writeTo :: OutputStream a -> Maybe a -> IO ()
+ System.IO.Streams.Core: appendInputStream :: InputStream a -> InputStream a -> IO (InputStream a)
+ System.IO.Streams.Core: concatInputStreams :: [InputStream a] -> IO (InputStream a)
Files
- changelog.md +5/−0
- io-streams.cabal +2/−2
- src/System/IO/Streams.hs +1/−0
- src/System/IO/Streams/Core.hs +2/−0
- test/System/IO/Streams/Tests/Process.hs +1/−1
changelog.md view
@@ -1,3 +1,8 @@+# Version 1.4.1.0++- Added `writeTo` export to the main module (forgotten when it was added to+ `.Core`.)+ # Version 1.4.0.0 - Added support for Text with Attoparsec, courtesy Kevin Brubeck Unhammer. Adds
io-streams.cabal view
@@ -1,5 +1,5 @@ Name: io-streams-Version: 1.4.0.0+Version: 1.4.1.0 License: BSD3 License-file: LICENSE Category: Data, Network, IO-Streams@@ -195,7 +195,7 @@ System.IO.Streams.Internal.Search - ghc-options: -Wall -fhpc -fwarn-tabs -funbox-strict-fields -threaded+ ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -threaded -fno-warn-unused-do-bind ghc-prof-options: -auto-all
src/System/IO/Streams.hs view
@@ -34,6 +34,7 @@ , unRead , peek , write+ , writeTo , atEOF -- * Connecting streams together
src/System/IO/Streams/Core.hs view
@@ -25,6 +25,8 @@ , connectTo , supply , supplyTo+ , appendInputStream+ , concatInputStreams -- * Thread safety \/ concurrency , lockingInputStream
test/System/IO/Streams/Tests/Process.hs view
@@ -40,7 +40,7 @@ ------------------------------------------------------------------------------ testInteractiveProcess :: Test testInteractiveProcess = testCase "process/interactiveProcess" $ do- (out, err) <- Streams.runInteractiveProcess "/usr/bin/tr" ["a-z", "A-Z"]+ (out, err) <- Streams.runInteractiveProcess "tr" ["a-z", "A-Z"] Nothing Nothing >>= run [inputdata] assertEqual "interactiveProcess" expected out