Skip to content

Commit c22164f

Browse files
authored
prepare 3.1.0 release (#152)
Creating release for 3.1.0 from v3 branch.
1 parent 40fe5e9 commit c22164f

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
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+
## [3.1.0] - 2024-04-09
6+
### Changed:
7+
- Android: Always inline contexts for feature events
8+
- Android: Redact anonymous attributes within feature events
9+
10+
### Fixed:
11+
- Android: Improves LDClient.identify(...) behavior when offline
12+
- Android: Improves thread usage in streaming connections.
13+
514
## [3.0.1] - 2023-09-21
615
### Fixed:
716
- Fixed a rare bug in key generation in some contexts generated by the Auto Environment Attributes feature.

lib/launchdarkly_flutter_client_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ typedef void LDFlagUpdatedCallback(String flagKey);
4848
/// record custom events, and provides various status configuration and monitoring utilities. See the individual class
4949
/// and method documentation for more details.
5050
class LDClient {
51-
static const String _sdkVersion = "3.0.1";
51+
static const String _sdkVersion = "3.1.0";
5252
static const MethodChannel _channel = const MethodChannel('launchdarkly_flutter_client_sdk');
5353

5454
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: 3.0.1
3+
version: 3.1.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 = '3.0.1';
8+
const String _sdkVersion = '3.1.0';
99

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

0 commit comments

Comments
 (0)