diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d4fc3c2..d435ddd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"packages/common":"1.2.0","packages/common_client":"1.3.0","packages/event_source_client":"1.0.0","packages/flutter_client_sdk":"4.6.0"} \ No newline at end of file +{"packages/common":"1.2.0","packages/common_client":"1.3.0","packages/event_source_client":"1.0.0","packages/flutter_client_sdk":"4.7.0"} \ No newline at end of file diff --git a/packages/flutter_client_sdk/CHANGELOG.md b/packages/flutter_client_sdk/CHANGELOG.md index 1d5ad9f..856bf9a 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.7.0](https://github.com/launchdarkly/flutter-client-sdk/compare/4.6.0...4.7.0) (2024-08-01) + + +### Features + +* Add support for waiting for non-cached values. ([#160](https://github.com/launchdarkly/flutter-client-sdk/issues/160)) ([28f7efa](https://github.com/launchdarkly/flutter-client-sdk/commit/28f7efa6128b937a4626fe4b4ca60b9e64db1641)) +* Update to common client 1.3.0 ([#164](https://github.com/launchdarkly/flutter-client-sdk/issues/164)) ([3189d51](https://github.com/launchdarkly/flutter-client-sdk/commit/3189d51d938786dddce487a3a638a3465b0c4cc8)) + ## [4.6.0](https://github.com/launchdarkly/flutter-client-sdk/compare/4.5.0...4.6.0) (2024-05-02) diff --git a/packages/flutter_client_sdk/example/pubspec.yaml b/packages/flutter_client_sdk/example/pubspec.yaml index 50a8c3a..f335bc5 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.6.0 # x-release-please-version + launchdarkly_flutter_client_sdk: 4.7.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 443a156..7d481fa 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.6.0')); // x-release-please-version + version: '4.7.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 85a04f3..5a473c2 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.6.0 +version: 4.7.0 homepage: https://github.com/launchdarkly/flutter-client-sdk repository: https://github.com/launchdarkly/flutter-client-sdk/tree/main/packages/flutter_client_sdk