diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30ddb35..98906bd 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 @@ -19,6 +19,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + fetch-depth: 2 # needed by codecov - name: Install dependencies run: pub get 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 634d1a9..0fd3eab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,16 +3,16 @@ 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" dependencies: - clock: '^1.1.0-nullsafety.3' + clock: ^1.1.0 dev_dependencies: - coverage: '^0.14.1' - test: '^1.16.0-nullsafety.13' - pedantic: '^1.10.0-nullsafety.3' - fake_async: '^1.2.0-nullsafety.3' + coverage: ^1.0.2 + test: ^1.16.0 + pedantic: ^1.10.0 + fake_async: ^1.2.0