Skip to content

Commit 9b5d158

Browse files
committed
Update release notes and finish 2.3.0 Release Candidate
1 parent b9d9229 commit 9b5d158

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [v2.3.0-rc]
44

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

88
Enhancements:
99
* Fix [#166][166] by [@TheConstructor]: make CommandLineApplication.GetValidationResult() public
@@ -293,7 +293,8 @@ Other:
293293
[@sebastienros]: https://github.com/sebastienros
294294
[@TheConstructor]: https://github.com/TheConstructor
295295

296-
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0-beta...HEAD
296+
[Unreleased]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.0-rc...HEAD
297+
[v2.3.0-rc]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-rc
297298
[v2.3.0-beta]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-beta
298299
[v2.3.0-alpha]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.5...v2.3.0-alpha
299300
[v2.2.5]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.2.4...v2.2.5

src/CommandLineUtils/releasenotes.props

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.3.0'">
44
<![CDATA[
55
6-
Enhancements:
6+
2.3.0 Release Candidate - no more changes are expected between this release and 2.3.0 unless there is a bad bug.
7+
8+
## Enhancements:
79
810
* Support the POSIX convention for cluster multiple options. For example, `-ixd` is treated the same as `-i -x -d`.
911
@@ -36,7 +38,9 @@ Enhancements:
3638
3739
* @jcaillon: Add API for `UnrecognizedCommandParsingException` which includes suggestions for similar options or commands.
3840
39-
Bugs fixed:
41+
* @TheConstructor: add CommandLineApplication.GetValidationResult()
42+
43+
## Bugs fixed:
4044
4145
* Duplicate subcommand names used to cause undefined behavior. Now, attempting to add a duplicate subcommand name or aliases will
4246
cause the library to throw before the app can execute.

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>2.3.0</VersionPrefix>
4-
<VersionSuffix>beta2</VersionSuffix>
4+
<VersionSuffix>rc</VersionSuffix>
55
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
66
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'">$(VersionPrefix)</PackageVersion>
77

0 commit comments

Comments
 (0)