diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 42ef598..7675c3c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"packages/common":"1.5.0","packages/common_client":"1.6.0","packages/event_source_client":"1.2.0","packages/flutter_client_sdk":"4.10.0"} +{"packages/common":"1.5.0","packages/common_client":"1.6.0","packages/event_source_client":"1.2.0","packages/flutter_client_sdk":"4.11.0"} diff --git a/packages/flutter_client_sdk/CHANGELOG.md b/packages/flutter_client_sdk/CHANGELOG.md index a371d1b..e09c4fc 100644 --- a/packages/flutter_client_sdk/CHANGELOG.md +++ b/packages/flutter_client_sdk/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the LaunchDarkly Flutter client-side SDK will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org). +## [4.11.0](https://github.com/launchdarkly/flutter-client-sdk/compare/4.10.0...4.11.0) (2025-04-21) + + +### Features + +* Add support for WASM ([#191](https://github.com/launchdarkly/flutter-client-sdk/issues/191)) ([33431eb](https://github.com/launchdarkly/flutter-client-sdk/commit/33431eb34e1d69e8b0c10f522b40c8a339fe1b5c)) +* **deps:** Update dependencies for launchdarkly_flutter_client_sdk ([#197](https://github.com/launchdarkly/flutter-client-sdk/issues/197)) ([de52cc8](https://github.com/launchdarkly/flutter-client-sdk/commit/de52cc8515337c40b1e1efe3c83994af7df6394e)) + ## [4.10.0](https://github.com/launchdarkly/flutter-client-sdk/compare/4.9.0...4.10.0) (2025-04-18) diff --git a/packages/flutter_client_sdk/example/pubspec.yaml b/packages/flutter_client_sdk/example/pubspec.yaml index 197241b..5aca3b8 100644 --- a/packages/flutter_client_sdk/example/pubspec.yaml +++ b/packages/flutter_client_sdk/example/pubspec.yaml @@ -33,7 +33,7 @@ dependencies: # This defaults to a published package. Using `flutter pub get` will get the package from pub.dev # If you run `melos bs` in the root of the repository, then it will be linked to the local version # instead. - launchdarkly_flutter_client_sdk: 4.10.0 # x-release-please-version + launchdarkly_flutter_client_sdk: 4.11.0 # x-release-please-version # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. diff --git a/packages/flutter_client_sdk/lib/src/ld_client.dart b/packages/flutter_client_sdk/lib/src/ld_client.dart index 6788a07..4bb23ca 100644 --- a/packages/flutter_client_sdk/lib/src/ld_client.dart +++ b/packages/flutter_client_sdk/lib/src/ld_client.dart @@ -72,7 +72,7 @@ interface class LDClient { context, DiagnosticSdkData( name: 'FlutterClientSdk', - version: '4.10.0')); // x-release-please-version + version: '4.11.0')); // x-release-please-version _connectionManager = ConnectionManager( logger: _client.logger, config: ConnectionManagerConfig( diff --git a/packages/flutter_client_sdk/pubspec.yaml b/packages/flutter_client_sdk/pubspec.yaml index 62c9b14..30daf3d 100644 --- a/packages/flutter_client_sdk/pubspec.yaml +++ b/packages/flutter_client_sdk/pubspec.yaml @@ -1,6 +1,6 @@ name: launchdarkly_flutter_client_sdk description: Official Flutter client-side SDK for LaunchDarkly. Get started using LaunchDarkly today! -version: 4.10.0 +version: 4.11.0 homepage: https://github.com/launchdarkly/flutter-client-sdk repository: https://github.com/launchdarkly/flutter-client-sdk/tree/main/packages/flutter_client_sdk