Skip to content

Commit b055c76

Browse files
committed
VersionBump : v6.5.0
1 parent c3a2a73 commit b055c76

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/CodeOfChaos.Unions.Generators/CodeOfChaos.Unions.Generators.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<!-- Package metadata -->
1818
<PackageId>CodeOfChaos.Unions.Generators</PackageId>
19-
<Version>6.4.0</Version>
19+
<Version>6.5.0</Version>
2020
<Authors>Anna Sas</Authors>
2121
<Description>The Source Generator for CodeOfChaos.Unions</Description>
2222
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-unions</PackageProjectUrl>

src/CodeOfChaos.Unions/CodeOfChaos.Unions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<IsPackable>true</IsPackable>
1010
<PackageId>CodeOfChaos.Unions</PackageId> <!-- Main package name -->
11-
<Version>6.4.0</Version> <!-- Package version -->
11+
<Version>6.5.0</Version> <!-- Package version -->
1212
<Authors>Anna Sas</Authors>
1313
<Description>A small package allowing you to use Union Structs</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-unions</PackageProjectUrl>

tests/Tests.CodeOfChaos.Unions/Unions/ResultTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public async Task Result_HasState() {
2121
// Assert
2222
await Assert.That(isState).IsTrue();
2323
await Assert.That(isError).IsFalse();
24-
await Assert.That(value).IsEqualTo(true);
24+
await Assert.That(value).IsTypeOf<bool>().And.IsTrue();
2525
}
2626

2727
[Test]

tests/Tests.CodeOfChaos.Unions/Unions/UnionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public async Task Test_TripleTypeUnion_ThirdType()
7474
await Assert.That(isT0).IsFalse();
7575
await Assert.That(isT1).IsFalse();
7676
await Assert.That(isT2).IsTrue();
77-
await Assert.That(value).IsEqualTo(true);
77+
await Assert.That(value).IsTypeOf<bool>().And.IsTrue();
7878
}
7979

8080
[Test]

0 commit comments

Comments
 (0)