simple-cmd-args 0.1.2 → 0.1.3
raw patch · 3 files changed
+10/−5 lines, 3 files
Files
- CHANGELOG.md +5/−2
- SimpleCmdArgs.hs +3/−1
- simple-cmd-args.cabal +2/−2
CHANGELOG.md view
@@ -2,11 +2,14 @@ `simple-cmd-args` uses [PVP Versioning](https://pvp.haskell.org). -## 0.1.2+## 0.1.3 (2019-09-12)+- export <|>++## 0.1.2 (2019-05-24) - add flagWith and flagWith' - export Parser, auto, optional -## 0.1.1+## 0.1.1 (2019-04-08) - add switchWith, strOptionWith, optionWith, optionalWith, strOptionalWith, argumentWith - export simpleCmdArgsWithMods
SimpleCmdArgs.hs view
@@ -26,10 +26,12 @@ argumentWith, Parser, auto,- optional+ optional,+ (<|>) ) where +import Control.Applicative ((<|>)) import Control.Monad (join) #if (defined(MIN_VERSION_base) && MIN_VERSION_base(4,8,0)) #else
simple-cmd-args.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: simple-cmd-args-version: 0.1.2+version: 0.1.3 synopsis: Simple command args parsing and execution description: This is a small wrapper over optparse-applicative which@@ -19,7 +19,7 @@ extra-doc-files: README.md , CHANGELOG.md tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2,- GHC == 8.4.4, GHC == 8.6.5+ GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1 source-repository head type: git