packages feed

cmdargs 0.6 → 0.6.1

raw patch · 3 files changed

+4/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

System/Console/CmdArgs/Implicit/Type.hs view
@@ -18,7 +18,7 @@ data CmdArgs a = CmdArgs     {cmdArgsValue :: a -- ^ The underlying value being wrapped.     ,cmdArgsHelp :: Maybe String -- ^ @Just@ if @--help@ is given, then gives the help message for display.-    ,cmdArgsVersion :: Maybe String -- ^ @Just@ if @--verion@ is given, then gives the version message for display.+    ,cmdArgsVersion :: Maybe String -- ^ @Just@ if @--version@ is given, then gives the version message for display.     ,cmdArgsVerbosity :: Maybe Verbosity -- ^ @Just@ if @--quiet@ or @--verbose@ is given, then gives the verbosity to use.     ,cmdArgsPrivate :: CmdArgsPrivate -- ^ Private: Only exported due to Haddock limitations.     }
System/Console/CmdArgs/Test/Implicit/HLint.hs view
@@ -9,7 +9,7 @@     {report :: [FilePath]     ,hint :: [FilePath]     ,color :: Bool-    ,ignore :: [String]+    ,ignore_ :: [String]     ,show_ :: Bool     ,extension :: [String]     ,language :: [String]@@ -28,7 +28,7 @@     {report = def &= opt "report.html" &= typFile &= help "Generate a report in HTML"     ,hint = def &= typFile &= help "Hint/ignore file to use"     ,color = def &= name "c" &= name "colour" &= help "Color the output (requires ANSI terminal)"-    ,ignore = def &= typ "MESSAGE" &= help "Ignore a particular hint"+    ,ignore_ = def &= typ "MESSAGE" &= help "Ignore a particular hint"     ,show_ = def &= help "Show all ignored ideas"     ,extension = def &= typ "EXT" &= help "File extensions to search (defaults to hs and lhs)"     ,language = def &= name "X" &= typ "LANG" &= help "Language extension (Arrows, NoCPP)"
cmdargs.cabal view
@@ -1,7 +1,7 @@ cabal-version:      >= 1.6 build-type:         Simple name:               cmdargs-version:            0.6+version:            0.6.1 license:            BSD3 license-file:       LICENSE category:           Console