From cd86dc664e0a31b3ca74b162a38f7c0dab929396 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Tue, 26 Jul 2022 20:02:12 +0000 Subject: [PATCH] Releasing version 1.1.3 --- CHANGELOG.md | 4 ++++ lib/launchdarkly_flutter_client_sdk.dart | 2 +- pubspec.yaml | 2 +- test/launchdarkly_flutter_client_sdk_test.dart | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 623ef86b..175a0f34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.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. + ## [1.1.2] - 2022-06-23 ### Changed: - Update the example project to a new version of flutter embedding and removed usage of deprecated flutter components. diff --git a/lib/launchdarkly_flutter_client_sdk.dart b/lib/launchdarkly_flutter_client_sdk.dart index e7ae9583..222b9b59 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.0.0"; + static const String _sdkVersion = "1.1.3"; static const MethodChannel _channel = const MethodChannel('launchdarkly_flutter_client_sdk'); static Completer _startCompleter = Completer(); diff --git a/pubspec.yaml b/pubspec.yaml index 995e185f..2eb03556 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.2 +version: 1.1.3 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 2b49ebd0..d285ba26 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.0.0"; +const String _sdkVersion = "1.1.3"; void main() { group('LDConnectionInformation', testLDConnectionInformation);