Skip to content

Commit

Permalink
Bump versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnCodr committed Aug 5, 2022
1 parent eed6fef commit 18b9989
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.0.1.{build}-{branch}
version: 3.0.0.{build}-{branch}
configuration:
- Debug
- Release
Expand Down
8 changes: 4 additions & 4 deletions src/NHamcrest.Tests/NHamcrest.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>2.0.0</Version>
<Version>3.0.0</Version>
<Description />
</PropertyGroup>
<ItemGroup>
<Compile Remove="FeatureMatcherTests.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Castle.Core" Version="5.0.0" />
<PackageReference Include="Moq" Version="4.18.1" />
<PackageReference Include="Castle.Core" Version="5.1.0" />
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="Microsoft.NET.TEST.Sdk" Version="17.2.0" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
</ItemGroup>
<ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions src/NHamcrest.XUnit/NHamcrest.XUnit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Copyright>Copyright © 2017</Copyright>
<Version Condition="'$(VersionSuffix)' == ''">2.0.1</Version>
<Version Condition="'$(VersionSuffix)' != ''">2.0.1-$(VersionSuffix)</Version>
<Copyright>Copyright © 2022</Copyright>
<Version Condition="'$(VersionSuffix)' == ''">3.0.0</Version>
<Version Condition="'$(VersionSuffix)' != ''">0.0.0-$(VersionSuffix)</Version>
<Description>Adapter for xunit for using NHamcrest library</Description>
<Authors>Graham Hay, Algirdas Lašas</Authors>
<PackageLicenseUrl>https://github.com/nhamcrest/NHamcrest/blob/master/LICENCE.txt</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/nhamcrest/NHamcrest</PackageProjectUrl>
<PackageTags>unittesting hamcrest matcher test</PackageTags>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit.assert" Version="2.4.1" />
<PackageReference Include="xunit.assert" Version="2.4.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NHamcrest\NHamcrest.csproj" />
Expand Down
10 changes: 5 additions & 5 deletions src/NHamcrest/NHamcrest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Copyright>Copyright © 2017</Copyright>
<Version Condition="'$(VersionSuffix)' == ''">2.0.1</Version>
<Version Condition="'$(VersionSuffix)' != ''">2.0.1-$(VersionSuffix)</Version>
<Copyright>Copyright © 2022</Copyright>
<Version Condition="'$(VersionSuffix)' == ''">3.0.0</Version>
<Version Condition="'$(VersionSuffix)' != ''">3.0.0-$(VersionSuffix)</Version>
<Description>.NET port of Hamcrest, a matcher library with some extra matchers</Description>
<Authors>Graham Hay, Algirdas Lašas</Authors>
<Company />
<Product />
<PackageLicenseUrl>https://github.com/nhamcrest/NHamcrest/blob/master/LICENCE.txt</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/nhamcrest/NHamcrest</PackageProjectUrl>
<PackageTags>unittesting hamcrest matcher test</PackageTags>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;1591</NoWarn>
Expand Down

0 comments on commit 18b9989

Please sign in to comment.