Skip to content

Commit

Permalink
Update release notes and finish 2.3.0 Release Candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Dec 15, 2018
1 parent b9d9229 commit 9b5d158
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Changelog

## [Unreleased]
## [v2.3.0-rc]

Bugs fixed:
* Fix [#189][189] by [@TheConstructor]: fix inferrence about clustering options for sub-sub-commands
* Fix [#189][189] by [@TheConstructor]: fix inference about clustering options for sub-sub-commands

Enhancements:
* Fix [#166][166] by [@TheConstructor]: make CommandLineApplication.GetValidationResult() public
Expand Down Expand Up @@ -293,7 +293,8 @@ Other:
[@sebastienros]: https://github.com/sebastienros
[@TheConstructor]: https://github.com/TheConstructor

[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0-beta...HEAD
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0-rc...HEAD
[v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc
[v2.3.0-beta]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-beta
[v2.3.0-alpha]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-alpha
[v2.2.5]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.4...v2.2.5
Expand Down
8 changes: 6 additions & 2 deletions src/CommandLineUtils/releasenotes.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.0'">
<![CDATA[
Enhancements:
2.3.0 Release Candidate - no more changes are expected between this release and 2.3.0 unless there is a bad bug.
## Enhancements:
* Support the POSIX convention for cluster multiple options. For example, `-ixd` is treated the same as `-i -x -d`.
Expand Down Expand Up @@ -36,7 +38,9 @@ Enhancements:
* @jcaillon: Add API for `UnrecognizedCommandParsingException` which includes suggestions for similar options or commands.
Bugs fixed:
* @TheConstructor: add CommandLineApplication.GetValidationResult()
## Bugs fixed:
* Duplicate subcommand names used to cause undefined behavior. Now, attempting to add a duplicate subcommand name or aliases will
cause the library to throw before the app can execute.
Expand Down
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<VersionPrefix>2.3.0</VersionPrefix>
<VersionSuffix>beta2</VersionSuffix>
<VersionSuffix>rc</VersionSuffix>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'">$(VersionPrefix)</PackageVersion>

Expand Down

0 comments on commit 9b5d158

Please sign in to comment.