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.