From bb5c5d6b7091c645329b6b02571a43c1aab1b1af Mon Sep 17 00:00:00 2001 From: Ed Ball Date: Sun, 30 Jun 2024 16:32:06 -0700 Subject: [PATCH] Publish 3.10.0-events.1. --- .github/workflows/build.yaml | 4 ++-- Directory.Build.props | 5 +++-- ReleaseNotes.md | 4 ++++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a313bbb..4b83b04 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -2,7 +2,7 @@ name: Build on: push: - branches: [master] + branches: [events] tags-ignore: ['**'] pull_request: workflow_dispatch: @@ -39,7 +39,7 @@ jobs: - name: Test run: .\build.ps1 test --skip build - name: Publish - if: runner.os == 'Windows' && github.repository_owner == 'FacilityApi' && github.ref == 'refs/heads/master' + if: runner.os == 'Windows' && github.repository_owner == 'FacilityApi' && github.ref == 'refs/heads/events' env: BUILD_BOT_PASSWORD: ${{ secrets.BUILD_BOT_PASSWORD }} NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} diff --git a/Directory.Build.props b/Directory.Build.props index 39dc786..efe2c8a 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,8 +1,9 @@ - 3.9.0 - 3.8.0 + 3.10.0 + events.1 + 3.9.0 12.0 enable enable diff --git a/ReleaseNotes.md b/ReleaseNotes.md index e0ae486..a813b8b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,9 @@ # Release Notes +## 3.10.0-events.1 + +* Support events. (Must opt-in via `FsdParserSettings.SupportsEvents`.) + ## 3.9.0 * Add support for service results and errors to `FacilityActionFilter` for controllers.