archive-sig 0.2.1.2 → 0.2.2.0
raw patch · 4 files changed
+20/−1 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Archive: versionInfo :: String
Files
- CHANGELOG.md +4/−0
- archive-sig.cabal +2/−1
- src/Archive.hsig +3/−0
- src/Archive/Compression.hs +11/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.2.2.0++ * Add `versionInfo` to `Archive` signature+ # 0.2.1.2 * Bugfix
archive-sig.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.0 name: archive-sig-version: 0.2.1.2+version: 0.2.2.0 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2019 Vanessa McHale@@ -17,6 +17,7 @@ source-repository head type: git location: https://github.com/vmchale/archive-backpack+ subdir: archive-sig flag development description: Enable `-Werror`
src/Archive.hsig view
@@ -4,6 +4,7 @@ , readArchiveBytes , packFiles , writeArchiveBytes+ , versionInfo ) where import qualified Data.ByteString.Lazy as BSL@@ -23,3 +24,5 @@ readArchiveBytes :: BSL.ByteString -> Either Error [Entry] writeArchiveBytes :: [Entry] -> BSL.ByteString++versionInfo :: String
src/Archive/Compression.hs view
@@ -49,6 +49,17 @@ | ".vagrant" `isSuffixOf` fp = False | "tags" `isSuffixOf` fp = False | "hspec-failures" `isSuffixOf` fp = False+ | ".github" `isSuffixOf` fp = False+ | ".travis.yml" `isSuffixOf` fp = False+ | "TODO.md" `isSuffixOf` fp = False+ | ".yamllint" `isSuffixOf` fp = False+ | ".ctags" `isSuffixOf` fp = False+ | ".atsfmt.toml" `isSuffixOf` fp = False+ | ".gitignore" `isSuffixOf` fp = False+ | ".clang-format" `isSuffixOf` fp = False+ | "stack.yaml.lock" `isSuffixOf` fp = False+ | "appveyor.yml" `isSuffixOf` fp = False+ | ".terraform" `isSuffixOf` fp = False | otherwise = True -- | @since 0.2.0.0