Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Unified Diff: CHANGELOG.md

Issue 1841223002: Fix most strong mode warnings. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Code review changes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .analysis_options ('k') | lib/src/async_memoizer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 946d3a8f7f403fde20c36a3ee9fbf3411790ef89..803b5899c01da1e6bb151ac4ea90dac199b94980 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+## 1.9.1
+
+* Fix all strong mode warnings and add generic method annotations.
+
+* `new StreamQueue()` now takes a `Stream<T>` rather than a `Stream<dynamic>`.
+ Passing a type that wasn't `is`-compatible with `Stream<T>` would already
+ throw an error under some circumstances, so this is not considered a breaking
+ change.
+
+* `new SubscriptionStream()` now takes a `Stream<T>` rather than a
+ `Stream<dynamic>`. Passing a type that wasn't `is`-compatible with `Stream<T>`
+ would already throw an error under some circumstances, so this is not
+ considered a breaking change.
+
+* `ErrorResult` now takes a type parameter.
+
+* `Result.asError` now returns a `Result<T>`.
+
## 1.9.0
* Deprecate top-level libraries other than `package:async/async.dart`, which
« no previous file with comments | « .analysis_options ('k') | lib/src/async_memoizer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698