Skip to content

Commit

Permalink
Set version to 4.0.1, update release notes and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Feb 1, 2022
1 parent 33b4ece commit 171cf80
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog

[Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.0...HEAD):
[Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.1...HEAD):

## [v4.0.1](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.0...v4.0.1)

### Fixes

* [@xoofx]: use explicit constructors on validation attributes to workaround .NET 6 runtime trimming error ([#491])
* [@jakubqwe]: support the Description field of VersionOptionFromMemberAttribute ([#490])

[#490]: https://github.com/natemcmaster/CommandLineUtils/pull/490
[#491]: https://github.com/natemcmaster/CommandLineUtils/pull/491

## [v4.0.0](https://github.com/natemcmaster/CommandLineUtils/compare/v3.1.0...v4.0.0)

Expand Down Expand Up @@ -524,6 +534,7 @@ Other:
[@handcraftedsource]: https://github.com/handcraftedsource
[@hellfirehd]: https://github.com/hellfirehd
[@IanG]: https://github.com/IanG
[@jakubqwe]: https://github.com/jakubqwe
[@jcaillon]: https://github.com/jcaillon
[@jerriep]: https://github.com/jerriep
[@kant2002]: https://github.com/kant2002
Expand All @@ -536,12 +547,13 @@ Other:
[@rlvandaveer]: https://github.com/rlvandaveer
[@rmcc13]: https://github.com/rmcc13
[@scott-xu]: https://github.com/scott-xu
[@skirchner989]: https://github.com/skirchner989
[@SeanFeldman]: https://github.com/SeanFeldman
[@sebastienros]: https://github.com/sebastienros
[@skirchner989]: https://github.com/skirchner989
[@SteveBenz]: https://github.com/SteveBenz
[@TheConstructor]: https://github.com/TheConstructor
[@vpkopylov]: https://github.com/vpkopylov
[@xoofx]: https://github.com/xoofx

[v2.3.4]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.3...v2.3.4
[v2.3.3]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.2...v2.3.3
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>4.0.1</VersionPrefix>
<VersionSuffix>beta</VersionSuffix>
<IncludePreReleaseLabelInPackageVersion Condition="'$(IS_STABLE_BUILD)' != 'true'">true</IncludePreReleaseLabelInPackageVersion>
<BuildNumber Condition=" '$(BuildNumber)' == '' ">$(GITHUB_RUN_NUMBER)</BuildNumber>
Expand Down
6 changes: 6 additions & 0 deletions src/CommandLineUtils/releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('4.0.'))">
Changes since 3.1.0:

Features:

* @scott-xu and @natemcmaster: feature: add API for setting default value on options and arguments, and display them in help text (#389 and #420)
Expand All @@ -15,6 +17,10 @@ Fixes:
* @scott-xu: show option types in help text when OptionAttribute.Template is set (#429)
* @skirchner989: change to not throw when a validator is not of type AttributeValidator (#431)
* @natemcmaster: don't mask OperationCanceledException triggered by SIGINT (#483)

Updates in 4.0.1 patch:
* @xoofx: use explicit constructors on validation attributes to workaround .NET 6 runtime trimming error (#491)
* @jakubqwe: support the Description field of VersionOptionFromMemberAttribute (#490)
</PackageReleaseNotes>
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('3.1.'))">
Improvements:
Expand Down

0 comments on commit 171cf80

Please sign in to comment.