Skip to content

Commit

Permalink
Merge pull request #16 from pfpack/release/1.1.3-rc.1.0.0
Browse files Browse the repository at this point in the history
release/v1.1.3-rc.1.0.0
  • Loading branch information
pmosk authored Jun 21, 2021
2 parents 54f49b6 + 1ddd3b8 commit 813ebbf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/primitives/Primitives.Tests/Primitives.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="PrimeFuncPack.Primitives" Version="1.1.3-preview.1.0.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="PrimeFuncPack.Primitives" Version="1.1.3-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="2.0.6" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/primitives/Primitives/Primitives.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Copyright>Copyright © 2020-2021 Andrei Sergeev, Pavel Moskovoy</Copyright>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Primitives</AssemblyName>
<Version>1.1.3-preview.1.0.0</Version>
<Version>1.1.3-rc.1.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/primitives/Primitives/Strings/Strings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public static string ToStringOrEmpty<T>(T? value)
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string ToStringOrEmpty<T>(T? value) where T : struct
=>
value.ToString() ?? Empty;
value?.ToString() ?? Empty;
}
}

0 comments on commit 813ebbf

Please sign in to comment.