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 afde9c0..9117b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.1.1-dev +## 1.1.1 * Add a check that throws if a logger name ends with '.'. * Require Dart 2.18 diff --git a/README.md b/README.md index 5221f06..51b1ae1 100644 --- a/README.md +++ b/README.md @@ -68,3 +68,8 @@ Available logging methods are: + `log.fine(logged_content);` + `log.finer(logged_content);` + `log.finest(logged_content);` + +## 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 d0f6894..8921a12 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: logging -version: 1.1.1-dev +version: 1.1.1 description: >- Provides APIs for debugging and error logging, similar to loggers in other