Skip to content

Commit

Permalink
v0.27.0 (#580)
Browse files Browse the repository at this point in the history
* CHANGELOG.md

* CHANGELOG.md
  • Loading branch information
hoc081098 authored May 7, 2021
1 parent 2a94f2b commit 6151299
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.27.0
* **BREAKING: ValueStream**
* Remove `ValueStreamExtensions`.
* `ValueStream.valueWrapper` becomes
- `value`.
- `valueOrNull`.
- `hasValue`.
* `ValueStream.errorAndStackTrace` becomes
- `error`.
- `errorOrNull`.
- `hasError`.
- `stackTrace`.
* Add `skipLast`/`SkipLastStreamTransformer` (thanks [@HannibalKcc](https://github.com/HannibalKcc)).
* Update `scan`: change `seed` to required param.
* Add `StackTrace` param to `recoveryFn` when using `OnErrorResumeStreamTransformer`/`onErrorResume`/`onErrorReturnWith`.
* Internal refactoring `ConnectableStream`.

## 0.26.0
* Stable, null-safe release.
* Add `takeLast` (thanks [@ThomasKliszowski](https://github.com/ThomasKliszowski)).
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: rxdart
version: 0.26.0
version: 0.27.0
description: >
RxDart is an implementation of the popular reactiveX api for asynchronous
programming, leveraging the native Dart Streams api.
repository: https://github.com/ReactiveX/rxdart

environment:
sdk: '>=2.12.0-0 <3.0.0'
sdk: '>=2.12.0 <3.0.0'

dev_dependencies:
build_runner: ^1.7.0
Expand Down

0 comments on commit 6151299

Please sign in to comment.