archive-sig 1.0.1.0 → 1.0.2.0
raw patch · 4 files changed
+8/−2 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Archive.Generic: packFiles :: [FilePath] -> IO ByteString
+ Archive.Generic: unpackToDir :: FilePath -> ByteString -> IO ()
Files
- CHANGELOG.md +4/−0
- archive-sig.cabal +1/−1
- src/Archive.hsig +1/−1
- src/Archive/Generic.hs +2/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 1.0.2.0++ * Re-export `unpackToDir` and `packFromFiles` from `Archive.Generic`+ # 1.0.1.0 * Export `unpackToDir` and `packFromFiles` from `Archive.Compression`
archive-sig.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.0 name: archive-sig-version: 1.0.1.0+version: 1.0.2.0 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2019-2020 Vanessa McHale
src/Archive.hsig view
@@ -35,7 +35,7 @@ packFilesRaw :: [FP] -- ^ Files and directories to write to archive -> IO BSL.ByteString -- ^ 'BSL.ByteString' containing archive --- @since 1.0.0.0+-- | @since 1.0.0.0 unpackToDirRaw :: FP -> BSL.ByteString -> IO () readArchiveBytes :: BSL.ByteString -> Either Error [Entry]
src/Archive/Generic.hs view
@@ -4,6 +4,8 @@ , packToFile , archiveSigVersion , packFromFiles+ , unpackToDir+ , packFiles ) where import Archive