File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
3- <PackageReleaseNotes Condition =" ' $(VersionPrefix)' == ' 2.4.1' " >
3+ <PackageReleaseNotes Condition =" $(VersionPrefix.StartsWith(' 2.4.')) " >
44Changes:
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'" >
9162.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)
You can’t perform that action at this time.
0 commit comments