Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade event emitter #59

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.9.1

* Chore: Upgrade event_emitter version

## 1.9.0

* Feat: Unique SDK tracking
Expand Down
8 changes: 4 additions & 4 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ packages:
dependency: transitive
description:
name: events_emitter
sha256: a075477bdf9c8c0c31bb7c7b7bdd357b4486c34f30163119f96de4e7f54abeff
sha256: d1024256ec6f6ddb18120351c7979d3986fe8d0a3b59c9f57a066e43542187de
url: "https://pub.dev"
source: hosted
version: "0.5.2"
version: "0.6.0"
fake_async:
dependency: transitive
description:
Expand Down Expand Up @@ -220,10 +220,10 @@ packages:
dependency: transitive
description:
name: rxdart
sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb"
sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
url: "https://pub.dev"
source: hosted
version: "0.27.7"
version: "0.28.0"
shared_preferences:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/unleash_proxy_client_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class UnleashClient extends EventEmitter {
this.customHeaders = const {},
this.impressionDataAll = false,
// bump on each release, overwrite in tests, do not change in client code
this.sdkName = '[email protected].0',
this.sdkName = '[email protected].1',
this.experimental}) {
_init();
metrics = Metrics(
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A Flutter/Dart client that can be used together with the unleash-pr
homepage: https://github.com/Unleash/unleash_proxy_client_flutter
repository: https://github.com/Unleash/unleash_proxy_client_flutter
issue_tracker: https://github.com/Unleash/unleash_proxy_client_flutter
version: 1.9.0
version: 1.9.1

environment:
sdk: ">=2.18.0 <4.0.0"
Expand All @@ -13,7 +13,7 @@ dependencies:
flutter:
sdk: flutter
http: '>=0.13.5 <2.0.0'
events_emitter: ^0.5.2
events_emitter: ^0.6.0
shared_preferences: '>=2.0.15 <3.0.0'
uuid: '>=3.0.7 <5.0.0'

Expand Down
Loading