A PVP-compliant re-release of 0.5.2 with no changes. (I missed a breaking change back in 0.5.1.)
- Added
eitherReader
. (#24)
-
Added configurable maximum info block width (#21).
-
Added
instance (Field e a, ...) => Field e (Maybe a)
for generic environment parsing. (#16)
-
Added
char
. -
Fixed masking parse errors with default values. (#8)
-
Replaced
keep
withsensitive
. All variables are kept in the environment after a successul parse except those wrapped insensitive
. (#9)
- Supported GHC 8.4.3.
-
Supported GHC 8.0.1.
-
On GHC 7.8 and newer, as a secutiry measure, all declared variables are unset by the end of a successful parse. If you want to keep the variable in the environment, use the
keep
modifier. (#7)
- Added
splitOn
.
- Removed the unnecessary
AsEmpty
andAsUnset
constraints on the error type in theflag
andswitch
parsers.
- Added
showDef
.
- Supported
Generic
ally derivedParser
s on GHC 7.10.
-
Supported user-defined
Reader
errors. (#4) -
Widened the range of GHC versions to test the library with from 7.6–7.8 to 7.6–HEAD.
- Added
helpDoc
, aParser
pretty-printer for use in error messages.
- Cosmetic changes in the help output.
-
Added
prefixed
. -
Added
parseOr
, a slightly generalized version ofparse
. -
Renamed
parseTest
toparsePure
.
- Initial release.