Changelog History
Page 5
-
v0.5.2 Changes
December 23, 2012- ๐ Fixed compatibility with GHC 7.2.
-
v0.5.2.1 Changes
December 24, 2012- ๐ Minor docs fixes.
-
v0.5.1 Changes
December 23, 2012๐ There is a new parser preference
noBacktrack
, that controls whether how a failure in a subparser is propagated. By default, an unknown option in a subparser causes the option to be looked up in parent parsers. WhennoBacktrack
is used, this behavior is disabled. This is useful to implement subcommands that have no relations with their parent commands.๐ Fixed bugs
- #35 - Artifacts of "hidden"
- #31 - Backtracking on commands
- #25 - Allow for using Maybe in options types to specify optional arguments
- #34 - No simple/obvious way to add a --version switch
- #29 - Document Mod
- #26 - Improve docs for the
Arrow
interface
-
v0.5.0 Changes
December 22, 2012Fewer GHC extensions required.
๐ Improved error handling: unrecognized options now result in an error message.
0๏ธโฃ By default, the full help text is not displayed on parse errors anymore. This behavior can be controlled with the
prefShowHelpOnError
field ofParserPrefs
.๐ The
(&)
operator is now deprecated. Modifiers can still be combined using(<>)
ormappend
.๐ Fixed bugs
- #37 - Use (<>) instead of (&) in documentation
-
v0.4.3 Changes
December 09, 2012- โก๏ธ Updated dependency bounds.
-
v0.4.2 Changes
November 26, 2012- ๐ Fixed bugs
- #27 - Please include the test source files in the cabal sdist tarball
- ๐ Fixed bugs
-
v0.4.1 Changes
September 04, 2012- ๐ Fixed bugs
- #19 - Regression
- ๐ Fixed bugs
-
v0.4.0 Changes
August 05, 2012๐ป Brief help text for nested commands now shows the full command line.
๐ Fixed inefficiency in the
arguments
parsers for long argument lists.โ Added automatic bash ๐ completion.
โ Added
disambiguate
modifier forprefs
, which enabled automatic ๐ป disambiguation of option abbreviations. With disambiguation on, a command line like:foo --out
will match an option called
--output
, as long as its the only one starting with the stringout
.โ Added
briefDesc
modifier.๐ Fixed bugs
- #8 - Long options not disambiguated
- #10 - Shell completions
- #16 - Possible memory leak?
-
v0.3.2 Changes
July 31, 2012๐ Fixed bug where both branches of an alternative could be matched.
๐ Improved brief help text for alternatives.
-
v0.3.1 Changes
July 30, 2012โ Added new
showDefault
andshowDefaultWith
modifiers, which will result in 0๏ธโฃ the default value (if present) to be displayed in the help text.๐ Fixed bugs
- #12 - Optionally display default values in help