Skip to content

Commit

Permalink
Bumps NuGet version to 0.5.3
Browse files Browse the repository at this point in the history
In preparation for release, bumps NuGet version to 0.5.3.

Also, fixes issue with NLU.DevOps.Core assembly version.
  • Loading branch information
rozele committed Oct 11, 2019
1 parent ea33b5e commit 564e136
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CommonNuget.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<PackageProjectUrl>https://github.com/Microsoft/NLU.DevOps</PackageProjectUrl>
<RepositoryUrl>https://github.com/Microsoft/NLU.DevOps.git</RepositoryUrl>
<Copyright>© Microsoft Corporation.</Copyright>
<Version>0.5.2</Version>
<Version>0.5.3</Version>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ public static void ThrowsArgumentNull()
nullUtterance.Should().Throw<ArgumentNullException>().And.ParamName.Should().Be("instance");
}

[Test]
public static void DoesNotCreateJsonInstance()
{
var expected = new Entity(string.Empty, null, string.Empty, 0);
var actual = expected.WithScore(null);
actual.Should().BeSameAs(expected);
expected.GetScore().Should().BeNull();
actual.GetScore().Should().BeNull();
}

[Test]
public static void DoesNotCreateNewInstance()
{
Expand Down
2 changes: 1 addition & 1 deletion src/NLU.DevOps.Core/NLU.DevOps.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\CodeAnalysis.props" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>0.4.0</AssemblyVersion>
<AssemblyVersion>0.5.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
Expand Down

0 comments on commit 564e136

Please sign in to comment.