packages feed

archive-sig 0.2.2.0 → 0.2.3.0

raw patch · 5 files changed

+17/−3 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Archive.Generic: archiveSigVersion :: Version

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.2.3.0++  * Add `archiveSigVersion` function+ # 0.2.2.0    * Add `versionInfo` to `Archive` signature
LICENSE view
@@ -1,4 +1,4 @@-Copyright Vanessa McHale (c) 2019+Copyright Vanessa McHale (c) 2019-2020  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
archive-sig.cabal view
@@ -1,9 +1,9 @@ cabal-version:   2.0 name:            archive-sig-version:         0.2.2.0+version:         0.2.3.0 license:         BSD3 license-file:    LICENSE-copyright:       Copyright: (c) 2019 Vanessa McHale+copyright:       Copyright: (c) 2019-2020 Vanessa McHale maintainer:      vamchale@gmail.com author:          Vanessa McHale synopsis:        Backpack signature for archive libraries@@ -31,6 +31,8 @@      signatures:       Archive     hs-source-dirs:   src+    other-modules:    Paths_archive_sig+    autogen-modules:  Paths_archive_sig     default-language: Haskell2010     ghc-options:      -Wall     build-depends:
src/Archive.hsig view
@@ -25,4 +25,5 @@  writeArchiveBytes :: [Entry] -> BSL.ByteString +-- | @since 0.2.2.0 versionInfo :: String
src/Archive/Generic.hs view
@@ -2,6 +2,7 @@                        , unpackFileToDir                        , unpackFromFile                        , packToFile+                       , archiveSigVersion                        , packFromFiles                        ) where @@ -9,6 +10,12 @@ import           Archive.Compression import           Control.Composition  ((.@)) import qualified Data.ByteString.Lazy as BSL+import qualified Data.Version         as V+import qualified Paths_archive_sig    as P++-- | @since 0.2.3.0+archiveSigVersion :: V.Version+archiveSigVersion = P.version  packFromFiles :: FilePath -- ^ Path of @.tar@ file to write               -> [FilePath] -- ^ Files and directories to archive