From 20a2eba9d9cb908bffeb5051313714b62c45239b Mon Sep 17 00:00:00 2001 From: Mateus Felipe Date: Fri, 23 May 2025 12:38:22 -0300 Subject: [PATCH 1/4] chore: update latest supported minor version --- .github/workflows/check-dart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-dart.yaml b/.github/workflows/check-dart.yaml index f90bd27..29122a2 100644 --- a/.github/workflows/check-dart.yaml +++ b/.github/workflows/check-dart.yaml @@ -9,7 +9,7 @@ env: # Current supported major major: 3 # Latest minor that we are explicitly supporting - latest_minor: 7 + latest_minor: 8 jobs: check-dart-version: From f5b8e1e23abfec984888665fba1dd792c7221492 Mon Sep 17 00:00:00 2001 From: Mateus Pinto Date: Fri, 26 Dec 2025 08:00:43 -0300 Subject: [PATCH 2/4] Update CI, fix typo and update dev dependencies --- .github/workflows/check-dart.yaml | 2 +- .github/workflows/ci.yaml | 2 +- README.md | 2 +- pubspec.yaml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check-dart.yaml b/.github/workflows/check-dart.yaml index 29122a2..b0c75da 100644 --- a/.github/workflows/check-dart.yaml +++ b/.github/workflows/check-dart.yaml @@ -9,7 +9,7 @@ env: # Current supported major major: 3 # Latest minor that we are explicitly supporting - latest_minor: 8 + latest_minor: 10 jobs: check-dart-version: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ff0dec0..1e398d0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - dart_version: ["3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7"] + dart_version: ["3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] runs-on: ubuntu-latest diff --git a/README.md b/README.md index 802d0ac..0e309fe 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A Dart timer that can be paused, resumed and reset. `PausableTimer` aims to be as similar and compatible as possible with Dart's -`Timer`, while providing extra funcionality. +`Timer`, while providing extra functionality. ## How to use it diff --git a/pubspec.yaml b/pubspec.yaml index dfdb878..3243b9f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -14,6 +14,6 @@ dependencies: clock: ^1.1.0 dev_dependencies: - fake_async: ^1.3.1 - lints: ^3.0.0 - test: ">=1.24.0" + fake_async: ^1.3.3 + lints: ^6.0.0 + test: ">=1.27.0" From bf84bf68e0c4237e9e1802c87d659e24865afbb0 Mon Sep 17 00:00:00 2001 From: Mateus Pinto Date: Fri, 26 Dec 2025 08:12:13 -0300 Subject: [PATCH 3/4] Revert dev dependencies --- pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3243b9f..51534e2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -14,6 +14,6 @@ dependencies: clock: ^1.1.0 dev_dependencies: - fake_async: ^1.3.3 + fake_async: ^1.3.1 lints: ^6.0.0 - test: ">=1.27.0" + test: ">=1.24.0" From 8b7747b937e4899b5a98644a5cd8fe1cd0476055 Mon Sep 17 00:00:00 2001 From: Mateus Pinto Date: Fri, 26 Dec 2025 08:32:11 -0300 Subject: [PATCH 4/4] again --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 51534e2..dfdb878 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,5 +15,5 @@ dependencies: dev_dependencies: fake_async: ^1.3.1 - lints: ^6.0.0 + lints: ^3.0.0 test: ">=1.24.0"