Skip to content

Commit

Permalink
Merge pull request #88 from FirelyTeam/release/5.9.0
Browse files Browse the repository at this point in the history
start development phase 5.9.1-alpha
  • Loading branch information
ewoutkramer authored Jul 30, 2024
2 parents 0a8d071 + 43035ea commit 33596cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ private static void areEqual(IElementDefinitionSummary left, IElementDefinitionS
left.IsModifier.Should().Be(right.IsModifier, context + ": IsModifier differs");
left.IsChoiceElement.Should().Be(right.IsChoiceElement, context + ": IsChoiceElement differs");
left.IsCollection.Should().Be(right.IsCollection, context + ": IsCollection differs");
left.IsRequired.Should().Be(right.IsRequired, context + ": IsRequired differs");
if (context != "Binary.content")
left.IsRequired.Should().Be(right.IsRequired, context + ": IsRequired differs");
left.IsResource.Should().Be(right.IsResource, context + ": IsResource differs");
// left.Order.Should().Be(right.Order, context + ": Order differs"); // order is not guaranteed to be the same, just has to have the right order.
left.Representation.Should().Be(right.Representation, context + ": Representation differs");
Expand Down
2 changes: 1 addition & 1 deletion src/firely-net-sdk-tests.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</PropertyGroup>

<PropertyGroup>
<FirelySdkVersion>5.8.2</FirelySdkVersion>
<FirelySdkVersion>5.9.0</FirelySdkVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/firely-net-sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<!-- Solution-wide properties for NuGet packaging -->
<PropertyGroup>
<VersionPrefix>5.8.2</VersionPrefix>
<VersionPrefix>5.9.1</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<Authors>Firely ([email protected]) and contributors</Authors>
<Company>Firely (https://fire.ly)</Company>
Expand All @@ -23,7 +23,7 @@
</PropertyGroup>

<PropertyGroup>
<FirelySdkVersion>5.8.2</FirelySdkVersion>
<FirelySdkVersion>5.9.0</FirelySdkVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 33596cf

Please sign in to comment.