From fec87060ba9a3f1b0e81bba5ad451fbde8bb857d Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Wed, 20 Sep 2023 12:20:35 -0700 Subject: [PATCH 1/2] support -dev pre-release versions --- .github/workflows/publish.yaml | 2 +- CHANGELOG.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e8e5a36..f416320 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -6,7 +6,7 @@ on: pull_request: branches: [ main ] push: - tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ] + tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ] jobs: publish: diff --git a/CHANGELOG.md b/CHANGELOG.md index 8638344..94fa0ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.0.0-wip +## 3.0.0-dev - `core`: - added `collection_methods_unrelated_type` diff --git a/pubspec.yaml b/pubspec.yaml index 476869a..7c70983 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: lints -version: 3.0.0-wip +version: 3.0.0-dev description: > Official Dart lint rules. Defines the 'core' and 'recommended' set of lints suggested by the Dart team. From c52e9bf24dc41fc22a3db0484cb09dd9ad858dc4 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Wed, 20 Sep 2023 12:35:12 -0700 Subject: [PATCH 2/2] use a '-beta' version extension --- CHANGELOG.md | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94fa0ef..a10b1fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.0.0-dev +## 3.0.0-beta - `core`: - added `collection_methods_unrelated_type` diff --git a/pubspec.yaml b/pubspec.yaml index 7c70983..65ad7bc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: lints -version: 3.0.0-dev +version: 3.0.0-beta description: > Official Dart lint rules. Defines the 'core' and 'recommended' set of lints suggested by the Dart team.