Merge pull request #351 from pcapriotti/topic/release-0.15.0

optparse-applicative 0.15.0 release
This commit is contained in:
Huw Campbell 2019-07-05 18:58:04 +10:00 committed by GitHub
commit 114e6ecaf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,27 @@
## Version 0.15.0.0 (05 Jul 2019)
- Add support for GHC 8.8.1.
- Add `subparserInline` modifier as additional way of
executing subparsers. When activated, the subparser
parse tree will be inserted into that of the parent
instead of being run independently, allowing mixing
of child and parent options.
- Improve rendering of complex nested parse structures.
Previously, brackets and parenthesis did not respect
whether or not options had to be defined together.
Now the parse tree is more accurately represeted in
the help text.
- Add `helpLongEquals` modifier, which will change how
long options are printed in the help text, adding an
equals sign, for example "--input=FILE".
- Updated dependency bounds.
- Clean ups and Documentation.
## Version 0.14.3.0 (03 Oct 2018)
- Updated dependency bounds.

View File

@ -1,5 +1,5 @@
name: optparse-applicative
version: 0.14.3.0
version: 0.15.0.0
synopsis: Utilities and combinators for parsing command line options
description:
optparse-applicative is a haskell library for parsing options