mirror of
https://github.com/Gabriella439/optparse-generic.git
synced 2024-11-22 21:48:54 +03:00
2.0 KiB
2.0 KiB
1.4.8
- Improve handling of
NonEmpty
- Add
getWithHelpWith
- Build against
optparse-applicative-0.17
- Build against
text-2.0
1.4.7
1.4.6
- Use
readField
in default implementation ofparseField
1.4.5
1.4.4
readIntegralBounded
: usemetavar
in error message
1.4.3
- Export internal
readIntegralBounded
utility - Build against
optparse-applicative-0.16.0.0
1.4.2
- New
unwrap
function- This is the underlying utility that powers
unwrap{Record,RecordPure,WithHelp}
- This is the underlying utility that powers
1.4.1
- Fix broken haddocks
1.4.0
- BREAKING CHANGE: Add support for type-level default values
- This is a breaking change because the various
parse*
typeclass methods now take an additional argument to support this feature
- This is a breaking change because the various
1.3.1
- Export
GenericParseRecord
andgetRecord{,PureWith}
1.3.0
- BREAKING CHANGE: New
metavar
method forParseField
class- This field simplifies customizing
ParseField
instances- Now you usually only need to override
metavar
now or possibly alsoreadField
, whereas the default behavior forparseField
should work more often
- Now you usually only need to override
- This is only a breaking change for data types that use the default
implementation of
ParseField
but do not deriveTypeable
- You can migrate existing code that doesn't compile by just explicitly
specifying what the
metavar
field should be
- This field simplifies customizing