Skip to content

Commit

Permalink
[#532] Update RELEASE-NOTES and small javadoc tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Oct 29, 2018
1 parent 0dbb32d commit e130c61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Picocli follows [semantic versioning](http://semver.org/).

## <a name="3.7.1-fixes"></a> Fixed issues
- [#525] Enhancement: Allow `@Mixin` parameters in `@Command` methods. Thanks to [Paul Horn](https://github.com/knutwalker) for the pull request.
- [#532] Enhancement: `OverwrittenOptionException` now has an accessor for the `ArgSpec` that was overwritten. Thanks to [Steven Fontaine](https://github.com/acid1103) for the pull request.
- [#524] Enhancement/Bugfix: `ReflectionConfigGenerator` in `picocli-codegen` should generate configuration for `@Mixin` fields. Thanks to [Paul Horn](https://github.com/knutwalker) for the pull request.
- [#523] Bugfix: Array should be initialized before calling setter method. Thanks to [Paul Horn](https://github.com/knutwalker) for the pull request.
- [#527] Bugfix: Quoting logic did not work for some Unicode code points
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -10122,7 +10122,8 @@ public OverwrittenOptionException(CommandLine commandLine, ArgSpec overwritten,
super(commandLine, msg);
overwrittenArg = overwritten;
}
/** Returns the {@link ArgSpec} for the option which was being overwritten. */
/** Returns the {@link ArgSpec} for the option which was being overwritten.
* @since 3.8 */
public ArgSpec getOverwritten() { return overwrittenArg; }
}
/**
Expand Down

0 comments on commit e130c61

Please sign in to comment.