Skip to content

Commit

Permalink
The most significant changes involve updates to the versions of vario…
Browse files Browse the repository at this point in the history
…us projects and packages. The `EasyDbMigrator` project was updated to version `3.0.5`, and the `Polly` package within this project was updated to version `8.3.1`. In the `EasyDbMigratorTests` project, the versions of the `coverlet.msbuild` and `coverlet.collector` packages were updated to `6.0.2`, and the `Dapper` package was updated to `2.1.35`. Additionally, the `PackageTags` property was updated to include the term `script`.

List of changes:

1. The `EasyDbMigrator` project was updated from version `3.0.4` to `3.0.5`. This change was reflected in the `Version`, `AssemblyVersion`, `FileVersion`, and `PackageVersion` properties.
2. The `PackageTags` property was updated to include the term `script`.
3. The `Polly` package in the `EasyDbMigrator` project was updated from version `8.3.0` to `8.3.1`.
4. In the `EasyDbMigratorTests` project, the versions of the `coverlet.msbuild` and `coverlet.collector` packages were updated from `6.0.1` to `6.0.2`.
5. The `Dapper` package in the `EasyDbMigratorTests` project was updated from `2.1.28` to `2.1.35`.
  • Loading branch information
Retrodad0001 committed Mar 23, 2024
1 parent 2c48fe8 commit c8ccf8f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions EasyDbMigrator/EasyDbMigrator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>3.0.4</Version>
<Version>3.0.5</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>
<RepositoryUrl>https://github.com/Retrodad0001/EasyDbMigrator</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageTags>database, migration, migrator, integration test, update database, CI, CD, SQL, PostgreSQL , CosmosDB, Update , DB</PackageTags>
<PackageTags>database, migration, migrator, integration test, update database, CI, CD, SQL, PostgreSQL , script , Update , DB</PackageTags>
<PackageReleaseNotes>updated internal packages
For help and release info see: https://github.com/Retrodad0001/EasyDbMigrator</PackageReleaseNotes>
<PackageIcon>Icon.png</PackageIcon>
<PackageIconUrl />
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Authors>Retrodad0001</Authors>
<AssemblyVersion>3.0.4</AssemblyVersion>
<FileVersion>3.0.4</FileVersion>
<AssemblyVersion>3.0.5</AssemblyVersion>
<FileVersion>3.0.5</FileVersion>
<PackageProjectUrl>https://github.com/Retrodad0001/EasyDbMigrator</PackageProjectUrl>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<PackageVersion>3.0.4</PackageVersion>
<PackageVersion>3.0.5</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.2" />
<PackageReference Include="Polly" Version="8.3.0" />
<PackageReference Include="Polly" Version="8.3.1" />
<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 @@ -12,11 +12,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.1">
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper" Version="2.1.35" />
<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" />
Expand All @@ -29,7 +29,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.1">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit c8ccf8f

Please sign in to comment.