Skip to content

Commit

Permalink
v0.44.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyus committed Mar 29, 2024
1 parent 9f88eb3 commit fbc517c
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 15 deletions.
4 changes: 2 additions & 2 deletions examples/auth_flow/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@ packages:
dependency: transitive
description:
name: state_beacon_core
sha256: "631ed8cb997c3e0100d793bc4ea3ca9f05903ca2f31c040311c1644c72f5caf2"
sha256: "57a88bd2ff162e59562359be1d32ce3f3514fce8af01b1d35c501f4200723c39"
url: "https://pub.dev"
source: hosted
version: "0.43.3"
version: "0.43.4"
stream_channel:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions examples/counter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ packages:
dependency: transitive
description:
name: state_beacon_core
sha256: "631ed8cb997c3e0100d793bc4ea3ca9f05903ca2f31c040311c1644c72f5caf2"
sha256: "57a88bd2ff162e59562359be1d32ce3f3514fce8af01b1d35c501f4200723c39"
url: "https://pub.dev"
source: hosted
version: "0.43.3"
version: "0.43.4"
stream_channel:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions examples/flutter_main/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -403,10 +403,10 @@ packages:
dependency: transitive
description:
name: state_beacon_core
sha256: "631ed8cb997c3e0100d793bc4ea3ca9f05903ca2f31c040311c1644c72f5caf2"
sha256: "57a88bd2ff162e59562359be1d32ce3f3514fce8af01b1d35c501f4200723c39"
url: "https://pub.dev"
source: hosted
version: "0.43.3"
version: "0.43.4"
state_beacon_lint:
dependency: "direct dev"
description:
Expand Down
4 changes: 2 additions & 2 deletions examples/shopping_cart/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@ packages:
dependency: transitive
description:
name: state_beacon_core
sha256: "631ed8cb997c3e0100d793bc4ea3ca9f05903ca2f31c040311c1644c72f5caf2"
sha256: "57a88bd2ff162e59562359be1d32ce3f3514fce8af01b1d35c501f4200723c39"
url: "https://pub.dev"
source: hosted
version: "0.43.3"
version: "0.43.4"
stream_channel:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions examples/skeleton/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ packages:
dependency: transitive
description:
name: state_beacon_core
sha256: "631ed8cb997c3e0100d793bc4ea3ca9f05903ca2f31c040311c1644c72f5caf2"
sha256: "57a88bd2ff162e59562359be1d32ce3f3514fce8af01b1d35c501f4200723c39"
url: "https://pub.dev"
source: hosted
version: "0.43.3"
version: "0.43.4"
stream_channel:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions examples/vgv_best_practices/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,10 @@ packages:
dependency: transitive
description:
name: state_beacon_core
sha256: "631ed8cb997c3e0100d793bc4ea3ca9f05903ca2f31c040311c1644c72f5caf2"
sha256: "57a88bd2ff162e59562359be1d32ce3f3514fce8af01b1d35c501f4200723c39"
url: "https://pub.dev"
source: hosted
version: "0.43.3"
version: "0.43.4"
stream_channel:
dependency: transitive
description:
Expand Down
6 changes: 6 additions & 0 deletions packages/state_beacon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.44.5

- [Fix] Fix bug with `FutureBeacon`s not autosleeping
- [Feat] Expose list of beacons created in a BeaconGroup wuth `BeaconGroup.beacons`
- [Feat] Add `BeaconGroup.onCreate` to allow adding a callback to be run when a beacon is created

# 0.44.4

- [Fix] Rare bug in FutureBeacon when start is called multiple times synchronously.
Expand Down
2 changes: 1 addition & 1 deletion packages/state_beacon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ class CountController extends BeaconController {

## Dependency Injection

Dependency injection refers to the process of providing an instance of a Beacon or BeaconController to your widgets. `state_beacon` ships with a lightweight dependency injection library called [lite_ref](https://pub.dev/packages/lite_ref) that makes it easy and ergonomic to provide Beacons and BeaconControllers to your widgets. It also manages disposal of both.
Dependency injection refers to the process of providing an instance of a Beacon or BeaconController to your widgets. `state_beacon` ships with a lightweight dependency injection library called [lite_ref](https://pub.dev/packages/lite_ref) that makes it easy and ergonomic to do this while also managing disposal of both.

NB: You can use another DI library such as `Provider`.

Expand Down
4 changes: 2 additions & 2 deletions packages/state_beacon/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: state_beacon
description: A reactive primitive and simple state managerment solution for dart and flutter
version: 0.44.4
version: 0.44.5
repository: https://github.com/jinyus/dart_beacon

environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
flutter:
sdk: flutter
lite_ref: ^0.6.3
state_beacon_core: ^0.43.3
state_beacon_core: ^0.43.4

dev_dependencies:
flutter_lints: ^3.0.0
Expand Down

0 comments on commit fbc517c

Please sign in to comment.