diff --git a/CHANGELOG.md b/CHANGELOG.md index dc6885d9..4c668134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ [See unreleased changes][unreleased]. +## [v2.4.1] + +* Fix [#277] - workaround a bug in NuGet's 'deterministic packaging' feature which causes issues based on your timezone + ## [v2.4.0] * Fix [#227] by [@ejball] - ArgumentEscaper should escape empty string diff --git a/Directory.Build.targets b/Directory.Build.targets index d0bbe166..08ddf60e 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -2,4 +2,14 @@ + + + + + + false + + diff --git a/src/CommandLineUtils/releasenotes.props b/src/CommandLineUtils/releasenotes.props index f7e23d06..8cfecf16 100644 --- a/src/CommandLineUtils/releasenotes.props +++ b/src/CommandLineUtils/releasenotes.props @@ -1,6 +1,6 @@ - + Features and bug fixes by some awesome contributors: * @IanG: Attributes for files and directories that must not exist @@ -16,6 +16,10 @@ Other things I fixed: * Add async methods that accept cancellation tokens * Handle CTRL+C by default * Support calling CommandLineApplication.Execute multiple times + +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) diff --git a/src/Hosting.CommandLine/releasenotes.props b/src/Hosting.CommandLine/releasenotes.props index 1fbd1ff3..daf978dc 100644 --- a/src/Hosting.CommandLine/releasenotes.props +++ b/src/Hosting.CommandLine/releasenotes.props @@ -1,10 +1,14 @@ - + 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 + +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) $(PackageReleaseNotes)