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