optparse-generic 1.3.0 → 1.3.1
raw patch · 3 files changed
+12/−5 lines, 3 files
Files
- CHANGELOG.md +4/−0
- optparse-generic.cabal +5/−5
- src/Options/Generic.hs +3/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+1.3.1++* Export `GenericParseRecord` and `getRecord{,PureWith}`+ 1.3.0 * BREAKING CHANGE: New `metavar` method for `ParseField` class
optparse-generic.cabal view
@@ -1,5 +1,5 @@ Name: optparse-generic-Version: 1.3.0+Version: 1.3.1 Cabal-Version: >=1.8.0.2 Build-Type: Simple License: BSD3@@ -7,7 +7,7 @@ Copyright: 2016 Gabriel Gonzalez Author: Gabriel Gonzalez Maintainer: Gabriel439@gmail.com-Tested-With: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1+Tested-With: GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1 Bug-Reports: https://github.com/Gabriel439/Haskell-Optparse-Generic-Library/issues Synopsis: Auto-generate a command-line parser for your datatype Description: This library auto-generates an @optparse-applicative@-compatible@@ -29,11 +29,11 @@ text < 1.3 , transformers >= 0.2.0.0 && < 0.6 , Only < 0.2 ,- optparse-applicative >= 0.14.0.0 && < 0.15,- time >= 1.5 && < 1.9 ,+ optparse-applicative >= 0.14.0.0 && < 0.16,+ time >= 1.5 && < 1.10, void < 0.8 , bytestring < 0.11,- semigroups >= 0.5.0 && < 0.19+ semigroups >= 0.5.0 && < 0.20 if impl(ghc < 7.8) Build-Depends:
src/Options/Generic.hs view
@@ -264,8 +264,10 @@ module Options.Generic ( -- * Parsers getRecord+ , getRecordWith , getWithHelp , getRecordPure+ , getRecordPureWith , unwrapRecord , unwrapWithHelp , unwrapRecordPure@@ -279,6 +281,7 @@ , defaultModifiers , lispCaseModifiers , firstLetter+ , GenericParseRecord(..) -- * Help , type (<?>)(..)