Skip to content

Commit 4de3410

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 1.2.0
1 parent 273eb7b commit 4de3410

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
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).
44

5+
## [1.2.0] - 2022-11-07
6+
### Changed:
7+
- Updated Android SDK version.
8+
- Updated Kotlin plugin version to allow working with new default versions in android studio.
9+
- Raised minimum iOS version to 11, and updated to build with XCode 13.
10+
511
## [1.1.4] - 2022-08-15
612
### Changed:
713
- Update to use android-client-sdk 3.1.6. This release contains fixes related to android ANRs.

lib/launchdarkly_flutter_client_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ typedef void LDFlagUpdatedCallback(String flagKey);
4242
/// record custom events, and provides various status configuration and monitoring utilities. See the individual class
4343
/// and method documentation for more details.
4444
class LDClient {
45-
static const String _sdkVersion = "1.1.4";
45+
static const String _sdkVersion = "1.2.0";
4646
static const MethodChannel _channel = const MethodChannel('launchdarkly_flutter_client_sdk');
4747

4848
static Completer<void> _startCompleter = Completer();

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: launchdarkly_flutter_client_sdk
22
description: Official Flutter client-side SDK for LaunchDarkly. Supports Android and iOS.
3-
version: 1.1.4
3+
version: 1.2.0
44
homepage: https://github.com/launchdarkly/flutter-client-sdk
55

66
environment:

test/launchdarkly_flutter_client_sdk_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:flutter_test/flutter_test.dart';
55
import 'package:launchdarkly_flutter_client_sdk/launchdarkly_flutter_client_sdk.dart';
66

77
const MethodChannel channel = MethodChannel('launchdarkly_flutter_client_sdk');
8-
const String _sdkVersion = "1.1.4";
8+
const String _sdkVersion = "1.2.0";
99

1010
void main() {
1111
group('LDConnectionInformation', testLDConnectionInformation);

0 commit comments

Comments
 (0)