Skip to content

Commit

Permalink
Releasing version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyReleaseBot committed Aug 15, 2022
1 parent 585ca44 commit d094a9f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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.1.4] - 2022-08-15
### Changed:
- Update to use android-client-sdk 3.1.6. This release contains fixes related to android ANRs.

## [1.1.3] - 2022-07-26
### Fixed:
- When using the flutter SDK on iOS the `device` and `os` custom attributes would not be populated in the user object. These will now be populated correctly.
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.3";
static const String _sdkVersion = "1.1.4";
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.3
version: 1.1.4
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.3";
const String _sdkVersion = "1.1.4";

void main() {
group('LDConnectionInformation', testLDConnectionInformation);
Expand Down

0 comments on commit d094a9f

Please sign in to comment.