diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..fcb7ccb --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,14 @@ +# A CI configuration to auto-publish pub packages. + +name: Publish + +on: + pull_request: + branches: [ master ] + push: + tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ] + +jobs: + publish: + if: ${{ github.repository_owner == 'dart-lang' }} + uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main diff --git a/CHANGELOG.md b/CHANGELOG.md index 39cf42f..323c699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.17.1-dev +## 1.17.1 * Require Dart 2.18 * Improve docs for `splitAfter` and `splitBefore`. diff --git a/README.md b/README.md index 9f66acf..a6a064d 100644 --- a/README.md +++ b/README.md @@ -57,3 +57,8 @@ functions on an existing object. Please file feature requests and bugs at the [issue tracker][tracker]. [tracker]: https://github.com/dart-lang/collection/issues + +## Publishing automation + +For information about our publishing automation and release process, see +https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. diff --git a/pubspec.yaml b/pubspec.yaml index 14ab46d..2ff9b54 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: collection -version: 1.17.1-dev +version: 1.17.1 description: Collections and utilities functions and classes related to collections. repository: https://github.com/dart-lang/collection