Skip to content

Commit

Permalink
v0.34.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyus committed Feb 16, 2024
1 parent 3d226b0 commit aab4f2f
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 18 deletions.
6 changes: 3 additions & 3 deletions examples/auth_flow/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.34.0"
version: "0.34.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: d5c41490e962381f08e368c426fe88a0d40518bceea4906a3df0090f2bd3b92a
sha256: ccfaeda5ac423b923a51d41c1d3ccbca73d2471c476b2ae0b4d33a254a1c446d
url: "https://pub.dev"
source: hosted
version: "0.34.0"
version: "0.34.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 @@ -366,15 +366,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.34.0"
version: "0.34.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: d5c41490e962381f08e368c426fe88a0d40518bceea4906a3df0090f2bd3b92a
sha256: ccfaeda5ac423b923a51d41c1d3ccbca73d2471c476b2ae0b4d33a254a1c446d
url: "https://pub.dev"
source: hosted
version: "0.34.0"
version: "0.34.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 @@ -171,15 +171,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.34.0"
version: "0.34.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: d5c41490e962381f08e368c426fe88a0d40518bceea4906a3df0090f2bd3b92a
sha256: ccfaeda5ac423b923a51d41c1d3ccbca73d2471c476b2ae0b4d33a254a1c446d
url: "https://pub.dev"
source: hosted
version: "0.34.0"
version: "0.34.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 @@ -147,15 +147,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.34.0"
version: "0.34.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: d5c41490e962381f08e368c426fe88a0d40518bceea4906a3df0090f2bd3b92a
sha256: ccfaeda5ac423b923a51d41c1d3ccbca73d2471c476b2ae0b4d33a254a1c446d
url: "https://pub.dev"
source: hosted
version: "0.34.0"
version: "0.34.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 @@ -155,15 +155,15 @@ packages:
path: "../../packages/state_beacon"
relative: true
source: path
version: "0.34.0"
version: "0.34.1"
state_beacon_core:
dependency: transitive
description:
name: state_beacon_core
sha256: d5c41490e962381f08e368c426fe88a0d40518bceea4906a3df0090f2bd3b92a
sha256: ccfaeda5ac423b923a51d41c1d3ccbca73d2471c476b2ae0b4d33a254a1c446d
url: "https://pub.dev"
source: hosted
version: "0.34.0"
version: "0.34.1"
stream_channel:
dependency: transitive
description:
Expand Down
8 changes: 8 additions & 0 deletions packages/state_beacon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.34.1

- [Refactor] Internal refactor toand minor improven in performance

# 0.34.0

- [Breaking] `Beacon.stream` and `Beacon.streamRaw` now takes a function that returns a stream instead of a stream directly. The upside of this change is that they are now derived beacons. All beacons accessed in the function will be tracked as dependencies. This means that if one of their dependencies changes, it will unsubscribe from the old stream and subscribe to the new one. This is a breaking change because it changes the signature of the method.
Expand Down Expand Up @@ -65,6 +69,10 @@ BeaconScheduler.flush();
expect(called, 2);
```

# 0.33.5

- [Fix] Bug with auto sleeping derivedFuture beacons

# 0.33.4

- [Fix] Concurrent modification error when notifying listeners.
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.34.0
version: 0.34.1
repository: https://github.com/jinyus/dart_beacon

environment:
Expand All @@ -10,7 +10,7 @@ environment:
dependencies:
flutter:
sdk: flutter
state_beacon_core: ^0.34.0
state_beacon_core: ^0.34.1

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

- [Refactor] Internal refactor toand minor improven in performance

# 0.34.0

- [Breaking] `Beacon.stream` and `Beacon.streamRaw` now takes a function that returns a stream instead of a stream directly. The upside of this change is that they are now derived beacons. All beacons accessed in the function will be tracked as dependencies. This means that if one of their dependencies changes, it will unsubscribe from the old stream and subscribe to the new one. This is a breaking change because it changes the signature of the method.
Expand Down Expand Up @@ -65,6 +69,10 @@ BeaconScheduler.flush();
expect(called, 2);
```

# 0.33.5

- [Fix] Bug with auto sleeping derivedFuture beacons

# 0.33.4

- [Fix] Concurrent modification error when notifying listeners.
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.34.0
version: 0.34.1
repository: https://github.com/jinyus/dart_beacon

environment:
Expand Down

0 comments on commit aab4f2f

Please sign in to comment.