simple-cmd-args 0.1.3 → 0.1.4
raw patch · 3 files changed
+21/−4 lines, 3 files
Files
- CHANGELOG.md +4/−0
- SimpleCmdArgs.hs +14/−2
- simple-cmd-args.cabal +3/−2
CHANGELOG.md view
@@ -2,6 +2,10 @@ `simple-cmd-args` uses [PVP Versioning](https://pvp.haskell.org). +## 0.1.4 (2019-10-29)+- export many, some, str+- export <$> and <*> on older ghc7+ ## 0.1.3 (2019-09-12) - export <|>
SimpleCmdArgs.hs view
@@ -26,12 +26,24 @@ argumentWith, Parser, auto,+ many, optional,- (<|>)+ some,+ str,+ (<|>),+#if (defined(MIN_VERSION_base) && MIN_VERSION_base(4,8,0))+#else+ (<$>), (<*>)+#endif ) where -import Control.Applicative ((<|>))+import Control.Applicative ((<|>),+#if (defined(MIN_VERSION_base) && MIN_VERSION_base(4,8,0))+#else+ (<$>), (<*>)+#endif+ ) 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.3+version: 0.1.4 synopsis: Simple command args parsing and execution description: This is a small wrapper over optparse-applicative which@@ -18,7 +18,8 @@ build-type: Simple extra-doc-files: README.md , CHANGELOG.md-tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2,+tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4,+ GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1 source-repository head