From b77ce50f86a8ce69b127398d1ae76929d9a90af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petrus=20Nguy=E1=BB=85n=20Th=C3=A1i=20H=E1=BB=8Dc?= Date: Sun, 30 May 2021 15:02:50 +0700 Subject: [PATCH] 0.27.1 (#593) * changelog and bump version * CHANGELOG.md --- CHANGELOG.md | 7 +++++++ pubspec.yaml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cebc3283..6af2fef7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.27.1 + +* Bugfix: `ForkJoinStream` throws `Null check operator used on a null value` when using nullable-type. +* Bugfix: `delay` operator + * Pause and resume properly. + * Cancel all timers after it has been cancelled. + ## 0.27.0 * **BREAKING: ValueStream** * Remove `ValueStreamExtensions`. diff --git a/pubspec.yaml b/pubspec.yaml index 25d68aa36..1cfb46f55 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: rxdart -version: 0.27.0 +version: 0.27.1 description: > RxDart is an implementation of the popular reactiveX api for asynchronous programming, leveraging the native Dart Streams api.