diff --git a/.github/workflows/consistency.yml b/.github/workflows/consistency.yml index 91675258f64..f22984a7871 100644 --- a/.github/workflows/consistency.yml +++ b/.github/workflows/consistency.yml @@ -20,6 +20,7 @@ jobs: runs-on: ubuntu-latest if: | github.event_name == 'pull_request' && + !contains(github.event.pull_request.title, '[skip chg]') && !startsWith(github.head_ref, 'publish/') && !startsWith(github.head_ref, 'dependabot/') && !startsWith(github.head_ref, 'backmerge/') && diff --git a/packages/emitter-framework/CHANGELOG.md b/packages/emitter-framework/CHANGELOG.md index 4e69153e79a..f187f678389 100644 --- a/packages/emitter-framework/CHANGELOG.md +++ b/packages/emitter-framework/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog - @typespec/emitter-framework +## 0.18.0 + +### Features + +- [#10372](https://github.com/microsoft/typespec/pull/10372) [csharp] Export new utilities from `@typespec/emitter-framework/csharp`: `getDocComments`, `getNullableUnionInnerType`, `efRefkey`, and `declarationRefkeys` +- [#10372](https://github.com/microsoft/typespec/pull/10372) [csharp] `EnumDeclaration` now emits the doc comments of the TypeSpec enum + + ## 0.17.0 ### Features diff --git a/packages/emitter-framework/package.json b/packages/emitter-framework/package.json index 4d32d42b5c5..3f506925579 100644 --- a/packages/emitter-framework/package.json +++ b/packages/emitter-framework/package.json @@ -1,6 +1,6 @@ { "name": "@typespec/emitter-framework", - "version": "0.17.0", + "version": "0.18.0", "type": "module", "main": "dist/index.js", "repository": {