diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 63f9b07..7f99d1b 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -58,4 +58,20 @@ jobs: --self-contained true \ -p:PublishSingleFile=true \ -o ./verify-publish + + # Summary job that depends on all matrix jobs + # This provides a single status check for branch protection + pr-check-summary: + needs: multi-platform-test + runs-on: ubuntu-latest + if: always() + + steps: + - name: Check multi-platform-test results + run: | + if [ "${{ needs.multi-platform-test.result }}" != "success" ]; then + echo "One or more platform tests failed" + exit 1 + fi + echo "All platform tests passed successfully" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1463db8..0ff2c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2025-12-19 + ### Added - **PostgreSQL database support** - Full schema extraction for PostgreSQL databases - `PostgreSqlSchemaExtractor` implementing `ISchemaExtractor` for PostgreSQL connectivity diff --git a/src/DbDiff.Application.Tests/DbDiff.Application.Tests.csproj b/src/DbDiff.Application.Tests/DbDiff.Application.Tests.csproj index b82b40c..2cfa330 100644 --- a/src/DbDiff.Application.Tests/DbDiff.Application.Tests.csproj +++ b/src/DbDiff.Application.Tests/DbDiff.Application.Tests.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/DbDiff.Application/DbDiff.Application.csproj b/src/DbDiff.Application/DbDiff.Application.csproj index b0dc87a..f49a3af 100644 --- a/src/DbDiff.Application/DbDiff.Application.csproj +++ b/src/DbDiff.Application/DbDiff.Application.csproj @@ -1,4 +1,4 @@ - + @@ -12,7 +12,8 @@ net10.0 enable enable - 0.0.1 + 0.1.0 + diff --git a/src/DbDiff.Cli/DbDiff.Cli.csproj b/src/DbDiff.Cli/DbDiff.Cli.csproj index 8805152..e03e925 100644 --- a/src/DbDiff.Cli/DbDiff.Cli.csproj +++ b/src/DbDiff.Cli/DbDiff.Cli.csproj @@ -1,4 +1,4 @@ - + @@ -20,7 +20,7 @@ net10.0 enable enable - 0.0.1 + 0.1.0 @@ -30,3 +30,4 @@ + diff --git a/src/DbDiff.Domain/DbDiff.Domain.csproj b/src/DbDiff.Domain/DbDiff.Domain.csproj index 9638a25..e177a55 100644 --- a/src/DbDiff.Domain/DbDiff.Domain.csproj +++ b/src/DbDiff.Domain/DbDiff.Domain.csproj @@ -1,10 +1,11 @@ - + net10.0 enable enable - 0.0.1 + 0.1.0 + diff --git a/src/DbDiff.Infrastructure/DbDiff.Infrastructure.csproj b/src/DbDiff.Infrastructure/DbDiff.Infrastructure.csproj index 1a4fd4c..9c5b746 100644 --- a/src/DbDiff.Infrastructure/DbDiff.Infrastructure.csproj +++ b/src/DbDiff.Infrastructure/DbDiff.Infrastructure.csproj @@ -1,4 +1,4 @@ - + @@ -13,7 +13,8 @@ net10.0 enable enable - 0.0.1 + 0.1.0 +