diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf3ba9..8c2f2b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Optimizely Flutter SDK Changelog +## 3.0.0 +November 28th, 2024 + +### Breaking Changes +* VUID configuration is now independent of ODP ([#78](https://github.com/optimizely/optimizely-flutter-sdk/pull/78)) +* When VUID is disabled: + * `vuid` is not generated or saved. + * `client-initialized` event will not auto fired on SDK init. + * `vuid` is not included in the odp events as a default attribute. + * `createUserContext()` will be rejected if `userId` is not provided. + ## 2.0.1 July 25, 2024 diff --git a/README.md b/README.md index 9fbc097..c851ae5 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Other Flutter platforms are not currently supported by this SDK. To add the flutter-sdk to your project dependencies, include the following in your app's pubspec.yaml: ``` - optimizely_flutter_sdk: ^2.0.1 + optimizely_flutter_sdk: ^3.0.0 ``` Then run diff --git a/lib/package_info.dart b/lib/package_info.dart index 2ccb4b5..cbf0165 100644 --- a/lib/package_info.dart +++ b/lib/package_info.dart @@ -3,5 +3,5 @@ class PackageInfo { static const String name = 'optimizely_flutter_sdk'; - static const String version = '2.0.1'; + static const String version = '3.0.0'; } diff --git a/pubspec.yaml b/pubspec.yaml index 53e822c..fb899c2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: optimizely_flutter_sdk description: This repository houses the Flutter SDK for use with Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts. -version: 2.0.1 +version: 3.0.0 homepage: https://github.com/optimizely/optimizely-flutter-sdk environment: