All Versions
42
Latest Version
Avg Release Cycle
128 days
Latest Release
-

Changelog History
Page 1

  • v1.5.2.0 Changes

    • โž• Add contraunzip.

    • ๐Ÿ‘ Guard support for network and zlib by cabal flags, to support platforms like GHCJS where they are not available.

  • v1.5.1.0 Changes

    January 28, 2019

    ๐Ÿ›  Fix stackage#4312: Relax network upper bound

  • v1.5.0.1 Changes

    September 03, 2017

    ๐Ÿ›  Bugfix: concurrentMerge [] should not block forever, even if this case is pathological.

  • v1.5.0.0 Changes

    September 03, 2017
    • ๐Ÿ”„ Changed the behaviour of ByteString.splitOn to not emit empty string if the input ends in the delimiter; now lines should match Prelude's. Bumped major version because this is a potentially breaking change (even if it is a bugfix.)
  • v1.4.1.0 Changes

    July 26, 2017
    • โž• Added writeTo export to the main module (forgotten when it was added to .Core.)
  • v1.4.0.0 Changes

    May 09, 2017
    • โž• Added support for Text with Attoparsec, courtesy Kevin Brubeck Unhammer. Adds modules System.IO.Streams.Attoparsec.{ByteString, Text} and deprecates System.IO.Streams.Attoparsec, which is now a thin wrapper.
  • v1.3.6.1 Changes

    March 24, 2017
    • โฌ†๏ธ Bumped dependencies on time and process.
  • v1.3.6.0 Changes

    January 13, 2017
    • Added new fold functions: haskell โšก๏ธ fold_ :: (x -> a -> x) -- ^ accumulator update function -> x -- ^ initial seed -> (x -> s) -- ^ recover folded value -> InputStream a -- ^ input stream -> IO s โšก๏ธ foldM_ :: (x -> a -> IO x) -- ^ accumulator update action -> IO x -- ^ initial seed -> (x -> IO s) -- ^ recover folded value -> InputStream a -- ^ input stream -> IO s
  • v1.3.5.0 Changes

    January 08, 2016
    • Add support for latest process, time, and transformers releases (and thereby indirectly for the upcoming GHC 8.0).
  • v1.3.4.0 Changes

    January 05, 2016
    • Added System.IO.Streams.Handle.handleToStreams, to conveniently create an InputStream/OutputStream pair.