Skip to content

Commit

Permalink
chore(publish): prepare for 0.2.7 (#82)
Browse files Browse the repository at this point in the history
* chore(publish): prepare for 0.2.7

* chore(publish): prepare for 0.2.7
  • Loading branch information
hoc081098 authored Nov 21, 2022
1 parent a72aebe commit 2f850ad
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
## 0.2.7 - TODO
## 0.2.7 - Nov 21, 2022

- **single**:
- Add `RxSingles.using`.
- Add `RxSingles.forkJoin3..forkJoin9` and `RxSingles.forkJoinList`.
- Deprecate `Single.fromStream`, introduce `Single.unsafeFromStream`.

- **state_stream**:
- Internal refactoring of `StateSubject`, fix `StateSubject.addStream`.
- `ValueStreamController.sink` now processes events correctly.

- `Subject.stream` now returns a **read-only** `Stream`.
Previously, `Subject.stream` was identical to the `Subject`, so we could add events to it, for example: `(subject.stream as Sink<T>).add(event)`.
This behavior is now disallowed, and will throw a `TypeError` if attempted. Use `Subject.sink`/`Subject` itself for adding events.

- Several docs and example improvements.

## 0.2.6 - Oct 26, 2022

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ Single<User> fetchUser(String id) {
- Static methods provided by [RxSingles]() class
- [RxSingles.zip2](https://pub.dev/documentation/rxdart_ext/latest/single/RxSingles/zip2.html)
- [RxSingles.forkJoin2](https://pub.dev/documentation/rxdart_ext/latest/single/RxSingles/forkJoin2.html)
..[RxSingles.forkJoin9](https://pub.dev/documentation/rxdart_ext/latest/single/RxSingles/forkJoin9.html)
and [RxSingles.forkJoinList](https://pub.dev/documentation/rxdart_ext/latest/single/RxSingles/forkJoinList.html)
- [RxSingles.using](https://pub.dev/documentation/rxdart_ext/latest/single/RxSingles/using.html)

- Convert others to Single via extensions.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.7-dev.0"
version: "0.2.7"
source_span:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rxdart_ext
description: Some extension methods and classes built on top of RxDart - RxDart extension.
version: 0.2.7-dev.0
version: 0.2.7
homepage: https://github.com/hoc081098/rxdart_ext.git
repository: https://github.com/hoc081098/rxdart_ext.git
issue_tracker: https://github.com/hoc081098/rxdart_ext/issues
Expand Down

2 comments on commit 2f850ad

@hoangchungk53qx1
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice <3

@hoc081098
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice <3

ok bạn 💯

Please sign in to comment.