Skip to content

Commit

Permalink
Prepare release 8.0.1 of the main package and 8.0.0-beta1 of the JSON…
Browse files Browse the repository at this point in the history
… support package.
  • Loading branch information
OlegRa committed May 5, 2024
1 parent 79c0798 commit a793ee1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions DateTimeOnly.Json/DateTimeOnly.Json.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@

<PropertyGroup>
<PackageReleaseNotes>
- Initial varsersion NuGet package - test build, publishing, and usage.
- Added support for the reflection-free JSON handling (source generators) via thin struct wrappers.
</PackageReleaseNotes>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<FileVersion>8.0.0.0</FileVersion>
<Version>8.0.0-alpha1</Version>
<AssemblyVersion>8.0.0.1</AssemblyVersion>
<FileVersion>8.0.0.1</FileVersion>
<Version>8.0.0-beta1</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 2 additions & 0 deletions DateTimeOnly.Tests/DateOnlyConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ public static void DateOnly_Read_Nullable_Tests()
public static void DateOnly_Read_Failure(string json, bool addQuotes = true)
{
if (addQuotes)
{
json = $"\"{json}\"";
}

Assert.Throws<JsonException>(() => JsonSerializer.Deserialize<DateOnly>(json, JsonSerializerOptions));
}
Expand Down
2 changes: 2 additions & 0 deletions DateTimeOnly.Tests/TimeOnlyConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ public static void TimeOnly_Read_Nullable_Tests()
public static void TimeOnly_Read_Failure(string json, bool addQuotes = true)
{
if (addQuotes)
{
json = $"\"{json}\"";
}

Assert.Throws<JsonException>(() => JsonSerializer.Deserialize<TimeOnly>(json, JsonSerializerOptions));
}
Expand Down
8 changes: 4 additions & 4 deletions DateTimeOnly/DateTimeOnly.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@

<PropertyGroup>
<PackageReleaseNotes>
- Cleaned up the codebase using the latest R# settings before the final release.
- Fixed several minor issues in documentation and helper classes - no functional changes.
</PackageReleaseNotes>
<AssemblyVersion>8.0.0.3</AssemblyVersion>
<FileVersion>8.0.0.3</FileVersion>
<Version>8.0.0</Version>
<AssemblyVersion>8.0.1.0</AssemblyVersion>
<FileVersion>8.0.1.0</FileVersion>
<Version>8.0.1</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit a793ee1

Please sign in to comment.