Skip to content

Commit

Permalink
v0.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyus committed Mar 13, 2024
1 parent 9c4e5ba commit 2633429
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 21 deletions.
6 changes: 3 additions & 3 deletions examples/auth_flow/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -211,15 +211,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.42.0"
version: "0.42.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: "9ae6bc74f624c4fa37af885f2bbb3278dcd503c2397aa2b70752b28426c25f40"
sha256: "8df493898115cfe438b655285bac79831fb851c927483592c6594b7249b29343"
url: "https://pub.dev"
source: hosted
version: "0.42.0"
version: "0.42.1"
stream_channel:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions examples/counter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.42.0"
version: "0.42.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: "9ae6bc74f624c4fa37af885f2bbb3278dcd503c2397aa2b70752b28426c25f40"
sha256: "8df493898115cfe438b655285bac79831fb851c927483592c6594b7249b29343"
url: "https://pub.dev"
source: hosted
version: "0.42.0"
version: "0.42.1"
stream_channel:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions examples/flutter_main/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -414,15 +414,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.42.0"
version: "0.42.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: "9ae6bc74f624c4fa37af885f2bbb3278dcd503c2397aa2b70752b28426c25f40"
sha256: "8df493898115cfe438b655285bac79831fb851c927483592c6594b7249b29343"
url: "https://pub.dev"
source: hosted
version: "0.42.0"
version: "0.42.1"
state_beacon_lint:
dependency: "direct dev"
description:
Expand Down
6 changes: 3 additions & 3 deletions examples/shopping_cart/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -211,15 +211,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.42.0"
version: "0.42.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: "9ae6bc74f624c4fa37af885f2bbb3278dcd503c2397aa2b70752b28426c25f40"
sha256: "8df493898115cfe438b655285bac79831fb851c927483592c6594b7249b29343"
url: "https://pub.dev"
source: hosted
version: "0.42.0"
version: "0.42.1"
stream_channel:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions examples/skeleton/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.42.0"
version: "0.42.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: "9ae6bc74f624c4fa37af885f2bbb3278dcd503c2397aa2b70752b28426c25f40"
sha256: "8df493898115cfe438b655285bac79831fb851c927483592c6594b7249b29343"
url: "https://pub.dev"
source: hosted
version: "0.42.0"
version: "0.42.1"
stream_channel:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions examples/vgv_best_practices/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.42.0"
version: "0.42.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: "9ae6bc74f624c4fa37af885f2bbb3278dcd503c2397aa2b70752b28426c25f40"
sha256: "8df493898115cfe438b655285bac79831fb851c927483592c6594b7249b29343"
url: "https://pub.dev"
source: hosted
version: "0.42.0"
version: "0.42.1"
stream_channel:
dependency: transitive
description:
Expand Down
4 changes: 4 additions & 0 deletions packages/state_beacon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.42.1

- [Fix] Export PeriodicBeacon and BeaconFamily classes

# 0.42.0

- [Breaking] `resetIfError` option for `toFuture()` is now `true` by default. This was done because there's rarely a case where you'd want it to throw instantly. If you want to keep the previous value, set `resetIfError` to `false`.
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.42.0
version: 0.42.1
repository: https://github.com/jinyus/dart_beacon

environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
flutter:
sdk: flutter
lite_ref: ^0.5.2
state_beacon_core: ^0.42.0
state_beacon_core: ^0.42.1

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.42.1

- [Fix] Export PeriodicBeacon and BeaconFamily classes

# 0.42.0

- [Breaking] `resetIfError` option for `toFuture()` is now `true` by default. This was done because there's rarely a case where you'd want it to throw instantly. If you want to keep the previous value, set `resetIfError` to `false`.
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.0
version: 0.42.1
repository: https://github.com/jinyus/dart_beacon

environment:
Expand Down

0 comments on commit 2633429

Please sign in to comment.