Skip to content

Commit

Permalink
Merge pull request #27 from llucax/release-0.2.0
Browse files Browse the repository at this point in the history
Prepare for release 0.2.0
  • Loading branch information
llucax authored Apr 6, 2021
2 parents a8c6f80 + a5ade00 commit acf5f07
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
strategy:
matrix:
dart_version: ["2.12-beta"]
dart_version: ["2.12"]

runs-on: ubuntu-latest

Expand All @@ -19,6 +19,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2 # needed by codecov

- name: Install dependencies
run: pub get
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
12 changes: 6 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit acf5f07

Please sign in to comment.