diff --git a/CHANGELOG.md b/CHANGELOG.md index ab7803ad..ef41dae4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ 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). +## [1.2.0] - 2022-11-07 +### Changed: +- Updated Android SDK version. +- Updated Kotlin plugin version to allow working with new default versions in android studio. +- Raised minimum iOS version to 11, and updated to build with XCode 13. + ## [1.1.4] - 2022-08-15 ### Changed: - Update to use android-client-sdk 3.1.6. This release contains fixes related to android ANRs. diff --git a/lib/launchdarkly_flutter_client_sdk.dart b/lib/launchdarkly_flutter_client_sdk.dart index 1cbd7967..95ca72e6 100644 --- a/lib/launchdarkly_flutter_client_sdk.dart +++ b/lib/launchdarkly_flutter_client_sdk.dart @@ -42,7 +42,7 @@ typedef void LDFlagUpdatedCallback(String flagKey); /// record custom events, and provides various status configuration and monitoring utilities. See the individual class /// and method documentation for more details. class LDClient { - static const String _sdkVersion = "1.1.4"; + static const String _sdkVersion = "1.2.0"; static const MethodChannel _channel = const MethodChannel('launchdarkly_flutter_client_sdk'); static Completer _startCompleter = Completer(); diff --git a/pubspec.yaml b/pubspec.yaml index 6a4ba3b9..33a81884 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: launchdarkly_flutter_client_sdk description: Official Flutter client-side SDK for LaunchDarkly. Supports Android and iOS. -version: 1.1.4 +version: 1.2.0 homepage: https://github.com/launchdarkly/flutter-client-sdk environment: diff --git a/test/launchdarkly_flutter_client_sdk_test.dart b/test/launchdarkly_flutter_client_sdk_test.dart index 159af142..bd41c27d 100644 --- a/test/launchdarkly_flutter_client_sdk_test.dart +++ b/test/launchdarkly_flutter_client_sdk_test.dart @@ -5,7 +5,7 @@ import 'package:flutter_test/flutter_test.dart'; import 'package:launchdarkly_flutter_client_sdk/launchdarkly_flutter_client_sdk.dart'; const MethodChannel channel = MethodChannel('launchdarkly_flutter_client_sdk'); -const String _sdkVersion = "1.1.4"; +const String _sdkVersion = "1.2.0"; void main() { group('LDConnectionInformation', testLDConnectionInformation);