From 3500b060a755d6ee4c929e55d572bbf53ebd9c69 Mon Sep 17 00:00:00 2001 From: Artem IG Date: Tue, 11 Oct 2022 18:23:59 +0300 Subject: [PATCH] !!master !!release releasing 1.0.0 --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c1291b..aea7c46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,4 +124,4 @@ jobs: } EOF - name: Publish package - run: pub publish -f + run: dart pub publish --force diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dff975..e93d5e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.0.0 +# 1.0.1 - Added `ParallelScheduler` - Results of tasks are now `await`ed by the schedulers diff --git a/pubspec.yaml b/pubspec.yaml index b4b57dd..c87d3db 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: schedulers description: Dart library for running asynchronous functions on time. Useful for load balancing, rate limiting, lazy execution. repository: https://github.com/rtmigo/schedulers -version: 1.0.0 +version: 1.0.1 environment: sdk: ">=2.18.0 <3.0.0" # 2.18 needed for test:1.21.6, that is needed to run JS new tests