Releases: ToToTec/CmdOption
Releases · ToToTec/CmdOption
0.7.1
What's Changed
- Update junit to 4.13 by @scala-steward in #25
- Update junit to 4.13.1 by @scala-steward in #26
- Update slf4j-api to 1.7.30 by @scala-steward in #28
- Update junit to 4.13.2 by @scala-steward in #29
- Added option to @CmdOptionDelegate to detect commands by @lefou in #31
- Update de.tobiasroeser.lambdatest to 0.7.1 by @scala-steward in #33
- Support short options with args and without space by @lefou in #34
New Contributors
- @scala-steward made their first contribution in #25
Full Changelog: 0.7.0...0.7.1
0.7.0
CmdOption 0.7.0 - 2020-03-13
Changelog
- Stop parsing options after a parameter was set with new method
CmdlineParser.setStopAcceptOptionsAfterParameterIsSet(boolean)
. - Improved the test suite
- Use mill as build tool
- Removed Support for Java 5. CmdOption now requires at least Java 6.
0.6.0
0.5.0
CmdOption 0.5.0 - 2017-10-09
- Added new LongHandler which support Long and long fields and setter method.
- New
UsageFormatter2
interface that accepts aPrintStream
and default implementationDefaultUsageFormatter2
. - Deprecated interface
UsageFormatter
and methodsCmdlineParser.usage(StringBuilder)
and CmdlineParser.setUsageFormatter(UsageFormatter) - Use Polyglot Maven (Scala) as build system
- Added support for aggregated short options via new method
CmdlineParser.setAggregateShortOptionsWithPrefix(String)