Skip to content

Commit

Permalink
v0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyus committed Mar 15, 2024
1 parent 43a7154 commit b6a3f3e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
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.0

- [Breaking] The `beacons` getter for `Beacon.family` has been replaced with `entries`. This is a breaking change because it returns a `MapEntry<Key,Beacon>` instead of a `Beacon`.

- [Dependency] Updated `lite_ref` to `0.6.1`

# 0.43.0

- [Fix] Update lite_ref dependency and add flutter dependency constraint
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 @@ -1188,7 +1188,7 @@ count.value = 40;

An abstract mixin class that automatically disposes all beacons and effects created within it. This can be used to create a controller that manages a group of beacons. use the included [BeaconGroup](#beacongroup)(`B.writable()`) instead of `Beacon.writable()` to create beacons and effects.

NB: All beacons must be created with as a `late` variable.
NB: All beacons must be created as a `late` variable.

```dart
class CountController extends BeaconController {
Expand Down
6 changes: 3 additions & 3 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.43.0
version: 0.44.0
repository: https://github.com/jinyus/dart_beacon

environment:
Expand All @@ -10,8 +10,8 @@ environment:
dependencies:
flutter:
sdk: flutter
lite_ref: ^0.6.0
state_beacon_core: ^0.42.1
lite_ref: ^0.6.1
state_beacon_core: ^0.43.0

dev_dependencies:
flutter_lints: ^3.0.0
Expand Down
4 changes: 4 additions & 0 deletions packages/state_beacon_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.43.0

- [Breaking] The `beacons` getter for `Beacon.family` has been replaced with `entries`. This is a breaking change because it returns a `MapEntry<Key,Beacon>` instead of a `Beacon`.

# 0.42.1

- [Fix] Export PeriodicBeacon and BeaconFamily classes
Expand Down
2 changes: 1 addition & 1 deletion packages/state_beacon_core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ count.value = 40;

An abstract mixin class that automatically disposes all beacons and effects created within it. This can be used to create a controller that manages a group of beacons. use the included [BeaconGroup](#beacongroup)(`B.writable()`) instead of `Beacon.writable()` to create beacons and effects.

NB: All beacons must be created with as a `late` variable.
NB: All beacons must be created as a `late` variable.

```dart
class CountController extends BeaconController {
Expand Down
2 changes: 1 addition & 1 deletion packages/state_beacon_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: state_beacon_core
description: A reactive primitive and simple state managerment solution for dart.
version: 0.42.1
version: 0.43.0
repository: https://github.com/jinyus/dart_beacon

environment:
Expand Down

0 comments on commit b6a3f3e

Please sign in to comment.