Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
1.2.0-nullsafety.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Feb 1, 2021
1 parent 98961db commit a181556
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
## 1.2.0-nullsafety.3 - Feb 1, 2021

- `DistinctValueStream`: change return type of `Null get errorAndStackTrace` (previous is `Never`).
- Add `DistinctValueStreamExtensions`: easily access value and error.
- Add `distinctValue` extension method: convert a `Stream` to a single-subscription `DistinctValueStream`.

## 1.2.0-nullsafety.2 - Jan 9, 2021

- **Breaking change**: Any errors from upstream and from `equals` callback will be not added to Stream.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/distinct_value_stream.dart
Expand Up @@ -21,7 +21,7 @@ abstract class DistinctValueStream<T> extends NotReplayValueStream<T> {
ValueWrapper<T> get valueWrapper;
}

/// Extensions to access value and error easily.
/// Extensions to easily access value and error.
extension DistinctValueStreamExtensions<T> on DistinctValueStream<T> {
/// A flag that turns true as soon as at least one event has been emitted.
/// Always returns `true`.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,7 +1,7 @@
name: distinct_value_connectable_stream
description: Distinct value connectable stream for RxDart, useful for BLoC pattern
author: Petrus Nguy峄卬 Th谩i H峄峜 <hoc081098@gmail.com>
version: 1.2.0-nullsafety.2
version: 1.2.0-nullsafety.3
homepage: https://github.com/hoc081098/distinct_value_connectable_stream.git
repository: https://github.com/hoc081098/distinct_value_connectable_stream.git
issue_tracker: https://github.com/hoc081098/distinct_value_connectable_stream/issues
Expand Down

0 comments on commit a181556

Please sign in to comment.