From 76d2780db828b06e3b485fd405e6cc8c7b463981 Mon Sep 17 00:00:00 2001 From: rtmigo Date: Sun, 18 Apr 2021 00:29:20 +0300 Subject: [PATCH] ready first release --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 4 ++-- README.md | 1 + pubspec.lock | 4 ++-- pubspec.yaml | 9 +++++---- 5 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22f4d2b..d5e1480 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,8 +44,8 @@ jobs: run: dart pub get - name: Analyze run: dart analyze --fatal-infos - #- name: Publish (dry run) - # run: flutter pub publish --dry-run + - name: Publish (dry run) + run: dart pub publish --dry-run merge-to-staging: needs: [test, analyze] diff --git a/CHANGELOG.md b/CHANGELOG.md index 633549c..1995b4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ -# 0.0.0 +# 0.1.0+0-alpha -- Nothing new under the moon +- Initial release diff --git a/README.md b/README.md index 7e922ad..40b6bd5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + # schedulers Objects in this library run callbacks asynchronously, allowing useful pauses diff --git a/pubspec.lock b/pubspec.lock index 152e02f..f9863df 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -51,7 +51,7 @@ packages: source: hosted version: "0.3.0" collection: - dependency: transitive + dependency: "direct main" description: name: collection url: "https://pub.dartlang.org" @@ -170,7 +170,7 @@ packages: source: hosted version: "1.8.0" pedantic: - dependency: "direct dev" + dependency: "direct main" description: name: pedantic url: "https://pub.dartlang.org" diff --git a/pubspec.yaml b/pubspec.yaml index 10e011a..ed80176 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,15 +1,16 @@ name: schedulers -publish_to: none -description: Local module. +description: Running callbacks asynchronously, with useful pauses between calls. +repository: https://github.com/rtmigo/schedulers -version: 0.0.0+0 +version: 0.1.0+0-alpha environment: sdk: ">=2.12.0 <3.0.0" dependencies: + pedantic: ^1.9.0 meta: ^1.3.0 + collection: ^1.15.0 dev_dependencies: - pedantic: ^1.9.0 test: ^1.5.1