| 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
|
|
|