From 873b3cb0779146103f9687c34eac9b338602ed66 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 6 Apr 2021 15:34:35 +0200 Subject: [PATCH 1/5] ci: Bump dart version to 2.12 The final release was done some time ago already. Signed-off-by: Leandro Lucarella --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30ddb35..51242a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: test: strategy: matrix: - dart_version: ["2.12-beta"] + dart_version: ["2.12"] runs-on: ubuntu-latest From 8b4dae41380f8c8f586fcd91b5e6821cff7c30a4 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 6 Apr 2021 15:36:23 +0200 Subject: [PATCH 2/5] ci: Do a git fetch with depth: 2 This is needed by codecov to be able to know what was the previous commit for comparison. Signed-off-by: Leandro Lucarella --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51242a5..98906bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + fetch-depth: 2 # needed by codecov - name: Install dependencies run: pub get From b4c8eff84d36eaa9ffcd207c65ea4ebd3d1ac180 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 6 Apr 2021 15:38:24 +0200 Subject: [PATCH 3/5] pub: Bump coverage dependency Signed-off-by: Leandro Lucarella --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 634d1a9..6a81453 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: clock: '^1.1.0-nullsafety.3' dev_dependencies: - coverage: '^0.14.1' + coverage: ^1.0.2 test: '^1.16.0-nullsafety.13' pedantic: '^1.10.0-nullsafety.3' fake_async: '^1.2.0-nullsafety.3' From 9780279d5b95a6785f7962f4ba0de0e0bf52c8ea Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 6 Apr 2021 15:41:41 +0200 Subject: [PATCH 4/5] pub: Bump dependencies to the final release All null-safety pre-releases are now finally released. Signed-off-by: Leandro Lucarella --- pubspec.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 6a81453..8cae385 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -9,10 +9,10 @@ environment: sdk: ">=2.12.0-0 <3.0.0" dependencies: - clock: '^1.1.0-nullsafety.3' + clock: ^1.1.0 dev_dependencies: coverage: ^1.0.2 - test: '^1.16.0-nullsafety.13' - pedantic: '^1.10.0-nullsafety.3' - fake_async: '^1.2.0-nullsafety.3' + test: ^1.16.0 + pedantic: ^1.10.0 + fake_async: ^1.2.0 From a5ade0008bc18135cae7d704a66808d66a887ccc Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 6 Apr 2021 15:42:14 +0200 Subject: [PATCH 5/5] pub: Bump package version to 0.2.0 final Signed-off-by: Leandro Lucarella --- CHANGELOG.md | 8 ++++++++ pubspec.yaml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4876548..f188e87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.2.0 + +- Bump dependencies. + +**NOTE:** Unless critical issues are found, this release will be released as +1.0.0 with no other changes since it has been pretty stable for a while now, +and no API breaking changes are expected for a long while either. + ## 0.2.0-nullsafety.0 - Make package [null-safe](https://dart.dev/null-safety). diff --git a/pubspec.yaml b/pubspec.yaml index 8cae385..0fd3eab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A timer implementation that can be paused, resumed and reset. homepage: https://github.com/llucax/pausable_timer repository: https://github.com/llucax/pausable_timer -version: 0.2.0-nullsafety.0 +version: 0.2.0 environment: sdk: ">=2.12.0-0 <3.0.0"