libarchive 2.0.0.0 → 2.0.0.1
raw patch · 4 files changed
+6/−6 lines, 4 files
Files
- CHANGELOG.md +4/−0
- libarchive.cabal +1/−1
- src/Codec/Archive/Foreign/ArchiveEntry.chs +1/−1
- src/Codec/Archive/Unpack/Lazy.hs +0/−4
CHANGELOG.md view
@@ -1,5 +1,9 @@ # libarchive +## 2.0.0.1++ * Polish documentation+ ## 2.0.0.0 * Fix typo in documentation
libarchive.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: libarchive-version: 2.0.0.0+version: 2.0.0.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018-2019 Vanessa McHale
src/Codec/Archive/Foreign/ArchiveEntry.chs view
@@ -1,4 +1,4 @@-+-- | This module corresponds to @archive_entry.h@ -- -- Functions in this module are stateful and hence take place in the 'IO' -- monad.
src/Codec/Archive/Unpack/Lazy.hs view
@@ -32,8 +32,6 @@ -- | In general, this will be more efficient than 'unpackToDir' ----- The 'BSL.ByteString' chunks should be @32k@ bytes.--- -- @since 1.0.4.0 unpackToDirLazy :: FilePath -- ^ Directory to unpack in -> BSL.ByteString -- ^ 'BSL.ByteString' containing archive@@ -48,8 +46,6 @@ -- detected. -- -- In general, this will be more efficient than 'readArchiveBS'------ The 'BSL.ByteString' chunks should be @32k@ bytes. -- -- @since 1.0.4.0 readArchiveBSL :: BSL.ByteString -> Either ArchiveResult [Entry]