Skip to content

Commit 7cee170

Browse files
committed
docs: update release notes and changelog
[ci skip]
1 parent 49169f8 commit 7cee170

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
[See unreleased changes][unreleased].
44

5-
## [v2.4.3]
5+
## [v2.4.3](https://github.com/natemcmaster/CommandLineUtils/compare/v2.4.2...v2.4.3)
6+
67
* Fix [#292] by [@thomaslevesque] - fix deadlock when `Environment.Exit` is called
78

89
[#292]: https://github.com/natemcmaster/CommandLineUtils/issues/292

src/CommandLineUtils/releasenotes.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Other things I fixed:
1616
* Add async methods that accept cancellation tokens
1717
* Handle CTRL+C by default
1818
* Support calling CommandLineApplication.Execute multiple times
19+
</PackageReleaseNotes>
20+
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.3'">
21+
$(PackageReleaseNotes)
22+
23+
2.4.3 patch:
24+
* Fix deadlock when calling Environment.Exit()
1925
</PackageReleaseNotes>
2026
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.2'">
2127
$(PackageReleaseNotes)

src/Hosting.CommandLine/releasenotes.props

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
<Project>
22
<PropertyGroup>
3-
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.1'">
3+
<PackageReleaseNotes Condition="$(VersionPrefix.StartsWith('2.4.'))">
44
Changes:
55
* Support C# 8.0 and nullable reference types
66
* RunCommandLineApplicationAsync is actually async now, not just sync disguised as an async API
77
* Better CTRL+C support
8+
</PackageReleaseNotes>
9+
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '2.4.3'">
10+
$(PackageReleaseNotes)
811

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

0 commit comments

Comments
 (0)