Skip to content

Commit b1d5679

Browse files
committed
Prepare 9.0.0 versions of both packages
1 parent 4d8e3b0 commit b1d5679

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

DateTimeOnly.Json/DateTimeOnly.Json.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<PackageProjectUrl>https://github.com/OlegRa/System.DateTimeOnly</PackageProjectUrl>
3636
<Description>DateOnly and TimeOnly types for .NET versions before 6.0</Description>
3737
<RepositoryUrl>https://github.com/OlegRa/System.DateTimeOnly</RepositoryUrl>
38-
<Copyright>© 2021-2024 Oleg Rakhmatulin. All rights reserved.</Copyright>
38+
<Copyright>© 2021-2025 Oleg Rakhmatulin. All rights reserved.</Copyright>
3939
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
4040
<AssemblyName>Portable.System.DateTimeOnly.Json</AssemblyName>
4141
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -54,9 +54,9 @@
5454
<PackageReleaseNotes>
5555
- The `Portable.System.DateTimeOnly` updated to version 9.0.0-beta1, so we need this package to be pre-released as well.
5656
</PackageReleaseNotes>
57-
<AssemblyVersion>9.0.0.0</AssemblyVersion>
58-
<FileVersion>9.0.0.0</FileVersion>
59-
<Version>9.0.0-beta1</Version>
57+
<AssemblyVersion>9.0.0.1</AssemblyVersion>
58+
<FileVersion>9.0.0.1</FileVersion>
59+
<Version>9.0.0</Version>
6060
</PropertyGroup>
6161

6262
<PropertyGroup>

DateTimeOnly.Json/Helpers/JsonHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ private static bool TryGetNextTwoDigits(ReadOnlySpan<byte> source, ref int value
324324

325325
if (digit1 > 9 || digit2 > 9)
326326
{
327-
value = default;
327+
value = 0;
328328
return false;
329329
}
330330

DateTimeOnly.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{B3778CF4-B949-4FAA-A651-FAE05B518963}"
1111
ProjectSection(SolutionItems) = preProject
1212
.github\workflows\coverage.yml = .github\workflows\coverage.yml
13+
.github\workflows\lockfiles.yml = .github\workflows\lockfiles.yml
1314
README.md = README.md
1415
.github\workflows\release.yml = .github\workflows\release.yml
1516
EndProjectSection

DateTimeOnly/DateTimeOnly.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<PackageProjectUrl>https://github.com/OlegRa/System.DateTimeOnly</PackageProjectUrl>
3636
<Description>DateOnly and TimeOnly types for .NET versions before 6.0</Description>
3737
<RepositoryUrl>https://github.com/OlegRa/System.DateTimeOnly</RepositoryUrl>
38-
<Copyright>© 2021-2024 Oleg Rakhmatulin. All rights reserved.</Copyright>
38+
<Copyright>© 2021-2025 Oleg Rakhmatulin. All rights reserved.</Copyright>
3939
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
4040
<AssemblyName>Portable.System.DateTimeOnly</AssemblyName>
4141
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -54,9 +54,9 @@
5454
<PackageReleaseNotes>
5555
- The `System.DateOnly` and `System.TimeOnly` source codes have been updated to the latest .NET 9.0 sources (with required adjustments).
5656
</PackageReleaseNotes>
57-
<AssemblyVersion>9.0.0.0</AssemblyVersion>
58-
<FileVersion>9.0.0.0</FileVersion>
59-
<Version>9.0.0-beta1</Version>
57+
<AssemblyVersion>9.0.0.1</AssemblyVersion>
58+
<FileVersion>9.0.0.1</FileVersion>
59+
<Version>9.0.0</Version>
6060
</PropertyGroup>
6161

6262
<PropertyGroup>

0 commit comments

Comments
 (0)