Skip to content

Commit a7e909f

Browse files
authored
chore(rxdart_flutter): prepare for v0.0.1 (#786) [skip ci]
* chore(rxdart_flutter): prepare for v0.0.1 * chore(rxdart_flutter): prepare for v0.0.1 * 'unsafe_html' was removed in Dart '3.7.0' * 'unsafe_html' was removed in Dart '3.7.0'
1 parent afd7f41 commit a7e909f

File tree

9 files changed

+14
-8
lines changed

9 files changed

+14
-8
lines changed

examples/fibonacci/analysis_options.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ linter:
1010
- always_declare_return_types # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1111
- prefer_single_quotes # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1212
- unawaited_futures # https://github.com/dart-lang/lints#migrating-from-packagepedantic
13-
- unsafe_html # https://github.com/dart-lang/lints#migrating-from-packagepedantic

examples/flutter/github_search/analysis_options.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ linter:
1313
- always_declare_return_types # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1414
- prefer_single_quotes # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1515
- unawaited_futures # https://github.com/dart-lang/lints#migrating-from-packagepedantic
16-
- unsafe_html # https://github.com/dart-lang/lints#migrating-from-packagepedantic

examples/flutter/github_search/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ packages:
477477
path: "../../../packages/rxdart_flutter"
478478
relative: true
479479
source: path
480-
version: "0.0.1-dev.1"
480+
version: "0.0.1"
481481
shelf:
482482
dependency: transitive
483483
description:

examples/web/analysis_options.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ linter:
1111
- always_declare_return_types # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1212
- prefer_single_quotes # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1313
- unawaited_futures # https://github.com/dart-lang/lints#migrating-from-packagepedantic
14-
- unsafe_html # https://github.com/dart-lang/lints#migrating-from-packagepedantic

packages/rxdart/analysis_options.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ linter:
1212
- always_declare_return_types # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1313
- prefer_single_quotes # https://github.com/dart-lang/lints#migrating-from-packagepedantic
1414
- unawaited_futures # https://github.com/dart-lang/lints#migrating-from-packagepedantic
15-
- unsafe_html # https://github.com/dart-lang/lints#migrating-from-packagepedantic

packages/rxdart_flutter/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.0.1 (2025-02-15)
2+
3+
Thanks to [@GiancarloCante](https://github.com/GiancarloCante) for the contribution to this release
4+
via PR [#782](https://github.com/ReactiveX/rxdart/pull/782).
5+
6+
- Add new widgets:
7+
- `ValueStreamListener`: a widget that performs side effects when `ValueStream` values change.
8+
- `ValueStreamConsumer`: a widget combining both builder and listener capabilities for `ValueStream`s.
9+
- Update `ValueStreamBuilder`: add optional `child` parameter to `ValueStreamWidgetBuilder`.
10+
- Add tests, documentation and examples.
11+
112
## 0.0.1-dev.1
213

314
- Initial release.

packages/rxdart_flutter/analysis_options.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ linter:
66
- always_declare_return_types # https://github.com/dart-lang/lints#migrating-from-packagepedantic
77
- prefer_single_quotes # https://github.com/dart-lang/lints#migrating-from-packagepedantic
88
- unawaited_futures # https://github.com/dart-lang/lints#migrating-from-packagepedantic
9-
- unsafe_html # https://github.com/dart-lang/lints#migrating-from-packagepedantic

packages/rxdart_flutter/example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ packages:
6767
path: ".."
6868
relative: true
6969
source: path
70-
version: "0.0.1-dev.1"
70+
version: "0.0.1"
7171
sky_engine:
7272
dependency: transitive
7373
description: flutter

packages/rxdart_flutter/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rxdart_flutter
22
description: RxDart Flutter - Flutter Widgets that make it easy to use Streams with Flutter.
3-
version: 0.0.1-dev.1
3+
version: 0.0.1
44
repository: https://github.com/ReactiveX/rxdart
55

66
environment:

0 commit comments

Comments
 (0)