From 7594bf21e5f284747d684938a28d43dd4348ec35 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 27 Sep 2021 10:14:08 +0200 Subject: [PATCH] Release v1.0.0+2 - Improve CI of the project - Update example to use `late` instead of an extra variable to avoid `!`. - Update and test against Dart 2.14. Signed-off-by: Leandro Lucarella --- CHANGELOG.md | 9 +++++++++ pubspec.yaml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dbcb93..acf9777 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.0.0+2 + +- Improve CI of the project +- Update example to use `late` instead of an extra variable to avoid `!`. +- Update and test against Dart 2.14. + +[More details available in +GitHub](https://github.com/llucax/pausable_timer/milestone/7?closed=1). + ## 1.0.0+1 This is a symbolic release marking that this package is stable (it has diff --git a/pubspec.yaml b/pubspec.yaml index a1667af..6087575 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: 1.0.0+1 +version: 1.0.0+2 environment: sdk: ">=2.12.0 <3.0.0"