Skip to content

Commit 171cf80

Browse files
committed
Set version to 4.0.1, update release notes and CHANGELOG
1 parent 33b4ece commit 171cf80

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22

3-
[Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.0...HEAD):
3+
[Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.1...HEAD):
4+
5+
## [v4.0.1](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.0...v4.0.1)
6+
7+
### Fixes
8+
9+
* [@xoofx]: use explicit constructors on validation attributes to workaround .NET 6 runtime trimming error ([#491])
10+
* [@jakubqwe]: support the Description field of VersionOptionFromMemberAttribute ([#490])
11+
12+
[#490]: https://github.com/natemcmaster/CommandLineUtils/pull/490
13+
[#491]: https://github.com/natemcmaster/CommandLineUtils/pull/491
414

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

@@ -524,6 +534,7 @@ Other:
524534
[@handcraftedsource]: https://github.com/handcraftedsource
525535
[@hellfirehd]: https://github.com/hellfirehd
526536
[@IanG]: https://github.com/IanG
537+
[@jakubqwe]: https://github.com/jakubqwe
527538
[@jcaillon]: https://github.com/jcaillon
528539
[@jerriep]: https://github.com/jerriep
529540
[@kant2002]: https://github.com/kant2002
@@ -536,12 +547,13 @@ Other:
536547
[@rlvandaveer]: https://github.com/rlvandaveer
537548
[@rmcc13]: https://github.com/rmcc13
538549
[@scott-xu]: https://github.com/scott-xu
539-
[@skirchner989]: https://github.com/skirchner989
540550
[@SeanFeldman]: https://github.com/SeanFeldman
541551
[@sebastienros]: https://github.com/sebastienros
552+
[@skirchner989]: https://github.com/skirchner989
542553
[@SteveBenz]: https://github.com/SteveBenz
543554
[@TheConstructor]: https://github.com/TheConstructor
544555
[@vpkopylov]: https://github.com/vpkopylov
556+
[@xoofx]: https://github.com/xoofx
545557

546558
[v2.3.4]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.3...v2.3.4
547559
[v2.3.3]: https://github.com/natemcmaster/CommandLineUtils/compare/v2.3.2...v2.3.3

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</PropertyGroup>
4242

4343
<PropertyGroup>
44-
<VersionPrefix>4.0.0</VersionPrefix>
44+
<VersionPrefix>4.0.1</VersionPrefix>
4545
<VersionSuffix>beta</VersionSuffix>
4646
<IncludePreReleaseLabelInPackageVersion Condition="'$(IS_STABLE_BUILD)' != 'true'">true</IncludePreReleaseLabelInPackageVersion>
4747
<BuildNumber Condition=" '$(BuildNumber)' == '' ">$(GITHUB_RUN_NUMBER)</BuildNumber>

src/CommandLineUtils/releasenotes.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('4.0.'))">
4+
Changes since 3.1.0:
5+
46
Features:
57

68
* @scott-xu and @natemcmaster: feature: add API for setting default value on options and arguments, and display them in help text (#389 and #420)
@@ -15,6 +17,10 @@ Fixes:
1517
* @scott-xu: show option types in help text when OptionAttribute.Template is set (#429)
1618
* @skirchner989: change to not throw when a validator is not of type AttributeValidator (#431)
1719
* @natemcmaster: don't mask OperationCanceledException triggered by SIGINT (#483)
20+
21+
Updates in 4.0.1 patch:
22+
* @xoofx: use explicit constructors on validation attributes to workaround .NET 6 runtime trimming error (#491)
23+
* @jakubqwe: support the Description field of VersionOptionFromMemberAttribute (#490)
1824
</PackageReleaseNotes>
1925
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('3.1.'))">
2026
Improvements:

0 commit comments

Comments
 (0)