Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Dec 26, 2021
1 parent 5daaac4 commit fb3ecda
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
22 changes: 9 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
# Changelog

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

## [v4.0.0-beta.74](https://github.com/natemcmaster/CommandLineUtils/compare/v4.0.0-beta.56...4.0.0-beta.74)

Fixes:

* [@natemcmaster]: fix new CI to correctly publish symbols to nuget.org
* [@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])

[#429]: https://github.com/natemcmaster/CommandLineUtils/pull/429
[#431]: https://github.com/natemcmaster/CommandLineUtils/pull/431

## [v4.0.0-beta.56](https://github.com/natemcmaster/CommandLineUtils/compare/v3.1.0...v4.0.0-beta.56)
## [v4.0.0](https://github.com/natemcmaster/CommandLineUtils/compare/v3.1.0...v4.0.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 @@ -23,6 +12,13 @@ Fixes:
### Fixes
* [@natemcmaster]: fix: pass the generic argument version in callback on .Option() and Argument() ([#405])
* [@natemcmaster]: add .NET Standard 2.1 and fix nullable type references ([#424] and [#425])
* [@natemcmaster]: fix new CI to correctly publish symbols to nuget.org
* [@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])

[#429]: https://github.com/natemcmaster/CommandLineUtils/pull/429
[#431]: https://github.com/natemcmaster/CommandLineUtils/pull/431


### Other
* [@natemcmaster]: change from Azure DevOps to GitHub workflows
Expand Down
15 changes: 15 additions & 0 deletions src/CommandLineUtils/releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('4.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)
* @natemcmaster: cleanup: make .Values read-only on CommandArgument/Option (#406)
* @natemcmaster: Make options, arguments, and commands read-only collections on CommandLineApplication (#407)

Fixes:

* @natemcmaster: fix: pass the generic argument version in callback on .Option() and Argument() (#405)
* @natemcmaster: add .NET Standard 2.1 and fix nullable type references (#424 and #425)
* @natemcmaster: fix new CI to correctly publish symbols to nuget.org
* @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)
</PackageReleaseNotes>
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('3.1.'))">
Improvements:
* @scott-xu: Show allowed values in help text (#369)
Expand Down

0 comments on commit fb3ecda

Please sign in to comment.