Skip to content

Commit

Permalink
Publish 3.10.0-events.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejball committed Jun 30, 2024
1 parent 30f6d32 commit bb5c5d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build

on:
push:
branches: [master]
branches: [events]
tags-ignore: ['**']
pull_request:
workflow_dispatch:
Expand Down Expand Up @@ -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 }}
Expand Down
5 changes: 3 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<Project>

<PropertyGroup>
<VersionPrefix>3.9.0</VersionPrefix>
<PackageValidationBaselineVersion>3.8.0</PackageValidationBaselineVersion>
<VersionPrefix>3.10.0</VersionPrefix>
<VersionSuffix>events.1</VersionSuffix>
<PackageValidationBaselineVersion>3.9.0</PackageValidationBaselineVersion>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit bb5c5d6

Please sign in to comment.