packages feed

bz2 0.1.1.0 → 0.1.1.1

raw patch · 4 files changed

+14/−2 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # bz2 +## 0.1.1.1++  * Haddock improvements+ ## 0.1.1.0    * Change type signature of `bZ2BzlibVersion`
bz2.cabal view
@@ -1,6 +1,6 @@ cabal-version:      1.18 name:               bz2-version:            0.1.1.0+version:            0.1.1.1 license:            BSD3 license-file:       LICENSE copyright:          Copyright: (c) 2020 Vanessa McHale
src/Codec/Compression/BZip.hs view
@@ -1,4 +1,7 @@-module Codec.Compression.BZip ( -- * High-level functions+-- | High-level functions throw 'BZError' on error.+--+-- @since 0.1.1.0+module Codec.Compression.BZip ( -- * High-level functions.                                 compress                               , compressWith                               , decompress
src/Codec/Compression/BZip/Unpack.chs view
@@ -36,6 +36,11 @@         (fmap snd . extractBuf bs)      where+        +        -- thing-to-cons-to (cdr) -> backward-traveling state (?)+        -- ret value -> forward-traveling state!+        -- stuff "remaining" to be fed in could be forward-traveling state ?+        -- -> [BS.ByteString] Writer + BZError state :p          -- corresponds to inner loop in zlib example         fillBuf :: [BS.ByteString] -> Ptr a -> IO (BZError, [BS.ByteString])