Skip to content

Commit

Permalink
docs: update release notes and changelog
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
natemcmaster committed Nov 1, 2019
1 parent 49169f8 commit 7cee170
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

[See unreleased changes][unreleased].

## [v2.4.3]
## [v2.4.3](https://github.com/natemcmaster/CommandLineUtils/compare/v2.4.2...v2.4.3)

* Fix [#292] by [@thomaslevesque] - fix deadlock when `Environment.Exit` is called

[#292]: https://github.com/natemcmaster/CommandLineUtils/issues/292
Expand Down
6 changes: 6 additions & 0 deletions src/CommandLineUtils/releasenotes.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Other things I fixed:
* Add async methods that accept cancellation tokens
* Handle CTRL+C by default
* Support calling CommandLineApplication.Execute multiple times
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.3'">
$(PackageReleaseNotes)

2.4.3 patch:
* Fix deadlock when calling Environment.Exit()
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.2'">
$(PackageReleaseNotes)
Expand Down
9 changes: 8 additions & 1 deletion src/Hosting.CommandLine/releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.1'">
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('2.4.'))">
Changes:
* Support C# 8.0 and nullable reference types
* RunCommandLineApplicationAsync is actually async now, not just sync disguised as an async API
* Better CTRL+C support
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.3'">
$(PackageReleaseNotes)

2.4.3 patch:
* Fix deadlock when calling Environment.Exit()
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.1'">
2.4.1 hot fix:
* Workaround a bizarre NuGet bug which causes problems for users in Europe and Asia
(see https://github.com/NuGet/Home/issues/8603)
Expand Down

0 comments on commit 7cee170

Please sign in to comment.