zip-archive 0.2.3.6 → 0.2.3.7
raw patch · 3 files changed
+16/−3 lines, 3 filesbuild-type:Customsetup-changedPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Setup.lhs +9/−1
- changelog +4/−0
- zip-archive.cabal +3/−2
Setup.lhs view
@@ -1,3 +1,11 @@ #!/usr/bin/env runhaskell++> module Main ( main ) where+> > import Distribution.Simple-> main = defaultMain+> import Distribution.Simple.Program+>+> main :: IO ()+> main = defaultMainWithHooks simpleUserHooks+> { hookedPrograms = [ simpleProgram "zip" ]+> }
changelog view
@@ -1,3 +1,7 @@+zip-archive 0.2.3.7++ * Declared test suite's dependency on 'zip' using custom Setup.lhs (#21,#22).+ zip-archive 0.2.3.6 * Removed hard-coded path to zip in test suite (#21).
zip-archive.cabal view
@@ -1,7 +1,7 @@ Name: zip-archive-Version: 0.2.3.6+Version: 0.2.3.7 Cabal-Version: >= 1.10-Build-type: Simple+Build-type: Custom Synopsis: Library for creating and modifying zip archives. Description: The zip-archive library provides functions for creating, modifying, and extracting files from zip archives.@@ -63,3 +63,4 @@ HUnit, zip-archive Default-Language: Haskell98 Ghc-Options: -Wall+ Build-Tools: zip