Skip to content

Commit 1329198

Browse files
committed
Updated version to beta-11
1 parent 7aba4c7 commit 1329198

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/bunit.core/ComponentParameter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static implicit operator ComponentParameter((string? name, object? value,
7878
public bool Equals(ComponentParameter other)
7979
=> string.Equals(Name, other.Name, StringComparison.Ordinal)
8080
&& (Value is null && other.Value is null || (Value?.Equals(other.Value) ?? false))
81-
&& IsCascadingValue == other.IsCascadingValue;
81+
&& IsCascadingValue.Equals(other.IsCascadingValue);
8282

8383
/// <inheritdoc/>
8484
public override bool Equals(object? obj) => obj is ComponentParameter other && Equals(other);

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "1.0.0-beta-10",
3+
"version": "1.0.0-beta-11",
44
"publicReleaseRefSpec": [
55
"^refs/heads/main$",
66
"^refs/heads/v\\d+(?:\\.\\d+)?$"

0 commit comments

Comments
 (0)