From 5b1c702f995572d25444774654894bbb424b6f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petrus=20Nguy=E1=BB=85n=20Th=C3=A1i=20H=E1=BB=8Dc?= Date: Sat, 4 Sep 2021 04:15:29 +0700 Subject: [PATCH] prepare for 0.27.2 (#622) * prepare for 0.27.2 * prepare for 0.27.2 * prepare for 0.27.2 --- CHANGELOG.md | 27 +++++++++++++++++++-------- pubspec.yaml | 2 +- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34fcdc1ce..4111b1ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,28 @@ -## 0.27.2 +## 0.27.2 (2021-09-03) -* Internal refactoring Stream Transformers: uses `Stream.multi`. +### Bug fixes + +* `onErrorReturnWith` now does not drop the remaining data events after the first error. +* Disallow changing handlers of `ConnectableStreamSubscription`. + +### Features + +* Add `delayWhen` operator. * Add optional parameter `maxConcurrent` to `flatMap`. -* Update to docs ([@AlexanderJohr](https://github.com/AlexanderJohr)). -* Bugfix: `onErrorReturnWith` drops remaining data event after the first error. -* Update `groupBy` +* `groupBy` * Rename `GroupByStream` to `GroupedStream`. * Add optional parameter `durationSelector`, which used to determine how long each group should exist. -* Add `delayWhen` operator. -* Update `ignoreElements` +* `ignoreElements` * Remove `@deprecated` annotation (`ignoreElements` should not be marked as deprecated). * Change return type to `Stream`. -* Disallow changing handlers of `ConnectableStreamSubscription`. + +### Documentation + +* Update to `PublishSubject`'s docs (thanks to [@AlexanderJohr](https://github.com/AlexanderJohr)). + +### Code refactoring + +* Refactoring Stream Transformers, using `Stream.multi` internally. ## 0.27.1 diff --git a/pubspec.yaml b/pubspec.yaml index 00c300008..1b2e98a88 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: rxdart -version: 0.27.1 +version: 0.27.2 description: > RxDart is an implementation of the popular reactiveX api for asynchronous programming, leveraging the native Dart Streams api.