Skip to content

Commit

Permalink
Update package versions in EasyDbMigrator and test projects
Browse files Browse the repository at this point in the history
Updated the version of the `EasyDbMigrator` project from `3.0.7` to `3.0.8`, which includes changes in the `Version`, `AssemblyVersion`, `FileVersion`, and `PackageVersion` properties in the `EasyDbMigrator.csproj` file. Also, updated the `Polly` package version in the `EasyDbMigrator.csproj` file from `8.3.1` to `8.4.0`. In the `EasyDbMigratorTests.csproj` file, the `Microsoft.NET.Test.Sdk` package version has been updated from `17.9.0` to `17.10.0`. Lastly, the versions of the `xunit` and `xunit.runner.visualstudio` packages in the `EasyDbMigratorTests.csproj` file have been updated from `2.8.0` to `2.8.1`.
  • Loading branch information
Retrodad0001 committed Jun 6, 2024
1 parent d061858 commit 4e1df5f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions EasyDbMigrator/EasyDbMigrator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>3.0.7</Version>
<Version>3.0.8</Version>
<PackageId>Retrodad.EasyDbMigrator</PackageId>
<Description>EasyDbMigrator is a database migration framework written in C#. It can be used for integration testing on your local machine or in CI/CD Pipelines or for manual migrations.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -18,12 +18,12 @@ For help and release info see: https://github.com/Retrodad0001/EasyDbMigrator</P
<PackageIconUrl />
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Authors>Retrodad0001</Authors>
<AssemblyVersion>3.0.7</AssemblyVersion>
<FileVersion>3.0.7</FileVersion>
<AssemblyVersion>3.0.8</AssemblyVersion>
<FileVersion>3.0.8</FileVersion>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<PackageVersion>3.0.7</PackageVersion>
<PackageVersion>3.0.8</PackageVersion>
<Title>Retrodad.EasyDbMigrator</Title>
</PropertyGroup>

Expand Down Expand Up @@ -54,7 +54,7 @@ For help and release info see: https://github.com/Retrodad0001/EasyDbMigrator</P
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Npgsql" Version="8.0.3" />
<PackageReference Include="Polly" Version="8.3.1" />
<PackageReference Include="Polly" Version="8.4.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions EasyDbMigratorTests/EasyDbMigratorTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
<PackageReference Include="Dapper" Version="2.1.44" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="TestEnvironment.Docker.Containers.Mssql" Version="2.1.8" />
<PackageReference Include="TestEnvironment.Docker.Containers.Postgres" Version="2.1.6" />
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 4e1df5f

Please sign in to comment.