Skip to content

Commit

Permalink
Version bump to 0.1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm@berkeley.edu committed Jan 5, 2009
1 parent 36519c8 commit fbe67f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Zip.hs
Expand Up @@ -45,7 +45,7 @@ main = do
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
Expand Down
2 changes: 1 addition & 1 deletion zip-archive.cabal
@@ -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.
Expand Down

0 comments on commit fbe67f7

Please sign in to comment.