Skip to content

Commit

Permalink
prepare 3.1.0 release (#152)
Browse files Browse the repository at this point in the history
Creating release for 3.1.0 from v3 branch.
  • Loading branch information
tanderson-ld authored Apr 9, 2024
1 parent 40fe5e9 commit c22164f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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

## [3.1.0] - 2024-04-09
### Changed:
- Android: Always inline contexts for feature events
- Android: Redact anonymous attributes within feature events

### Fixed:
- Android: Improves LDClient.identify(...) behavior when offline
- Android: Improves thread usage in streaming connections.

## [3.0.1] - 2023-09-21
### Fixed:
- Fixed a rare bug in key generation in some contexts generated by the Auto Environment Attributes feature.
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 @@ -48,7 +48,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 = "3.0.1";
static const String _sdkVersion = "3.1.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: 3.0.1
version: 3.1.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 = '3.0.1';
const String _sdkVersion = '3.1.0';

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

0 comments on commit c22164f

Please sign in to comment.