Skip to content

Commit 69ab9f2

Browse files
committed
Update changelog and version for release.
1 parent c451705 commit 69ab9f2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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+
## [1.0.0] - 2021-10-29
6+
First supported release of LaunchDarkly's Flutter SDK. This release contains no SDK code changes from the prior beta release.
7+
8+
### Added:
9+
- Support for LaunchDarkly's internal release tool.
10+
511
## [0.3.0] - 2021-10-15
612
This is a breaking beta release. The changelog may not detail all changes between beta releases. The SDK is considered to be an unsupported beta until release 1.0.0.
713

lib/launchdarkly_flutter_client_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ typedef void LDFlagUpdatedCallback(String flagKey);
4242
/// record custom events, and provides various status configuration and monitoring utilities. See the individual class
4343
/// and method documentation for more details.
4444
class LDClient {
45-
static const String _sdkVersion = "0.3.0";
45+
static const String _sdkVersion = "1.0.0";
4646
static const MethodChannel _channel = const MethodChannel('launchdarkly_flutter_client_sdk');
4747

4848
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: 0.3.0
3+
version: 1.0.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 = "0.3.0";
8+
const String _sdkVersion = "1.0.0";
99

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

0 commit comments

Comments
 (0)