File tree Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ See unreleased changes] [ unreleased ] .
4
4
5
+ ## [ v2.4.1]
6
+
7
+ * Fix [ #277 ] - workaround a bug in NuGet's 'deterministic packaging' feature which causes issues based on your timezone
8
+
5
9
## [ v2.4.0]
6
10
7
11
* Fix [ #227 ] by [ @ejball ] - ArgumentEscaper should escape empty string
Original file line number Diff line number Diff line change 2
2
<Target Name =" UpdateCiSettings" Condition =" '$(CI)' == 'true' AND '$(OS)' == 'Windows_NT' AND '$(IsPackable)' == 'true'" >
3
3
<Message Importance =" High" Text =" ##vso[build.updatebuildnumber]$(PackageVersion)" />
4
4
</Target >
5
+
6
+
7
+ <!-- Workaround https://github.com/NuGet/Home/issues/7001 -->
8
+ <Target Name =" DisableNuGetDeterministicPackaging"
9
+ BeforeTargets =" GenerateNuspec"
10
+ AfterTargets =" CoreCompile" >
11
+ <PropertyGroup >
12
+ <Deterministic >false</Deterministic >
13
+ </PropertyGroup >
14
+ </Target >
5
15
</Project >
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
- <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.4.0 '" >
3
+ <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.4.1 '" >
4
4
Features and bug fixes by some awesome contributors:
5
5
6
6
* @IanG: Attributes for files and directories that must not exist
@@ -16,6 +16,10 @@ Other things I fixed:
16
16
* Add async methods that accept cancellation tokens
17
17
* Handle CTRL+C by default
18
18
* Support calling CommandLineApplication.Execute multiple times
19
+
20
+ 2.4.1 hot fix:
21
+ * Workaround a bizarre NuGet bug which causes problems for users in Europe and Asia
22
+ (see https://github.com/NuGet/Home/issues/8603)
19
23
</PackageReleaseNotes >
20
24
21
25
<PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.3.4'" >
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
- <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.4.0 '" >
3
+ <PackageReleaseNotes Condition =" '$(VersionPrefix)' == '2.4.1 '" >
4
4
Changes:
5
5
* Support C# 8.0 and nullable reference types
6
6
* RunCommandLineApplicationAsync is actually async now, not just sync disguised as an async API
7
7
* Better CTRL+C support
8
+
9
+ 2.4.1 hot fix:
10
+ * Workaround a bizarre NuGet bug which causes problems for users in Europe and Asia
11
+ (see https://github.com/NuGet/Home/issues/8603)
8
12
</PackageReleaseNotes >
9
13
<PackageReleaseNotes >$(PackageReleaseNotes)
10
14
You can’t perform that action at this time.
0 commit comments