optparse-applicative v0.10.0 Release Notes

Release Date: 2014-09-01 // over 9 years ago
    • ๐Ÿ“œ Parser execution and help text generation are now more modular, and allow for greater customisation.

    • ๐Ÿ— More consistent API for option and argument builders: now option takes a reader as argument, and nullOption is deprecated in favour of option. The reader modifier is gone. Quick migration guide:

      • option (without a reader modifier) => option auto
      • nullOption (without a reader modifier) => option disabled
      • option/nullOption (with a reader r modifier) => option r.
    • โž• Added convenience builder strArgument, equivalent to argument str.

    • โœ‚ Removed functions deprecated from at least version 0.8.0.

    • โœ… Switched test infrastructure to tasty.

    • ๐Ÿ›  Fixed bugs

      • #63 - Inconsistency between 'argument' and 'strOption' types