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 9b35551..252f6f2 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,8 +1,9 @@ - 2.13.0 - 2.12.1 + 2.14.0 + events.1 + 2.13.0 12.0 enable enable diff --git a/ReleaseNotes.md b/ReleaseNotes.md index dd64659..054047b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,9 @@ # Release Notes +## 2.14.0-events.1 + +* Support events. (Must opt-in via `FsdParserSettings.SupportsEvents`.) + ## 2.13.0 * Add `WriteNoIndent` and `WriteLineNoIndent` to `CodeWriter`.