Skip to content

Commit

Permalink
Releasing version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyReleaseBot committed Nov 7, 2022
1 parent 273eb7b commit 4de3410
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/launchdarkly_flutter_client_sdk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> _startCompleter = Completer();
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion test/launchdarkly_flutter_client_sdk_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4de3410

Please sign in to comment.