zip-archive 0.1.1.2 → 0.1.1.3
raw patch · 3 files changed
+2/−10 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENSE +0/−8
- Zip.hs +1/−1
- zip-archive.cabal +1/−1
LICENSE view
@@ -18,11 +18,3 @@ A copy of the license can be found in the file COPYING in the source distribution. ---------------------------------------------------------------------------------Data.Hash.CRC32.GZip is included from MissingH, to avoid inheriting-MissingH's many dependencies. -Copyright (C) 2004-2006 John Goerzen <jgoerzen@complete.org>-Released under the GPL as above.-
Zip.hs view
@@ -45,7 +45,7 @@ progname <- getProgName let header = "Usage: " ++ progname ++ " [OPTION...] archive files..." (opts, args) <- case getOpt Permute options argv of- (o, _, _) | Version `elem` o -> putStrLn "version 0.1" >> exitWith ExitSuccess+ (o, _, _) | Version `elem` o -> putStrLn "version 0.1.1.3" >> exitWith ExitSuccess (o, _, _) | Help `elem` o -> error $ usageInfo header options (o, (a:as), []) -> return (o, a:as) (_, _, errs) -> error $ concat errs ++ "\n" ++ usageInfo header options
zip-archive.cabal view
@@ -1,5 +1,5 @@ Name: zip-archive-Version: 0.1.1.2+Version: 0.1.1.3 Cabal-version: >= 1.2 Build-type: Simple Synopsis: Library for creating and modifying zip archives.