From b6815c188952ab8b68785cf2e21da2c60787ea2f Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 29 Jan 2021 10:42:44 -0800 Subject: [PATCH 1/2] Prepare to publish stable null safety Bump to stable version of `collection`. --- CHANGELOG.md | 4 ++++ pubspec.yaml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2d99c3..d43d717 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.5.0 + +* Stable release for null safety. + ## 2.5.0-nullsafety.3 * Update SDK constraints to `>=2.12.0-0 <3.0.0` based on beta release diff --git a/pubspec.yaml b/pubspec.yaml index 3aa8080..cd95fd4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: async -version: 2.5.0-nullsafety.3 +version: 2.5.0 description: Utility functions and classes related to the 'dart:async' library. homepage: https://www.github.com/dart-lang/async @@ -8,7 +8,7 @@ environment: sdk: ">=2.12.0-0 <3.0.0" dependencies: - collection: '>=1.15.0-nullsafety <1.15.0' + collection: '>=1.15.0 <2.0.0' dev_dependencies: fake_async: ^1.2.0-nullsafety From 2175a8d41805662b1a6c147f4293632a374badb5 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Mon, 1 Feb 2021 11:54:02 -0800 Subject: [PATCH 2/2] Use a caret constraint --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cd95fd4..3c8dd95 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=2.12.0-0 <3.0.0" dependencies: - collection: '>=1.15.0 <2.0.0' + collection: ^1.15.0 dev_dependencies: fake_async: ^1.2.0-nullsafety