Skip to content

Commit

Permalink
Update changelog and version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwhelanLD committed Oct 29, 2021
1 parent c451705 commit 69ab9f2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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.0.0] - 2021-10-29
First supported release of LaunchDarkly's Flutter SDK. This release contains no SDK code changes from the prior beta release.

### Added:
- Support for LaunchDarkly's internal release tool.

## [0.3.0] - 2021-10-15
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.

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 = "0.3.0";
static const String _sdkVersion = "1.0.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: 0.3.0
version: 1.0.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 = "0.3.0";
const String _sdkVersion = "1.0.0";

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

0 comments on commit 69ab9f2

Please sign in to comment.