Skip to content

Commit ea0fdc4

Browse files
[FSSDK-8713] chore: prepare for the release 2.0.0 (#70)
* Update version * Update CHANGELOG.md * Update README.md
1 parent 0f4a6eb commit ea0fdc4

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Optimizely Flutter SDK Changelog
22

3+
## 2.0.0
4+
January 23, 2024
5+
6+
### New Features
7+
8+
* Add ODP for iOS ([#52](https://github.com/optimizely/optimizely-flutter-sdk/pull/52)).
9+
* Add ODP for Android ([#57](https://github.com/optimizely/optimizely-flutter-sdk/pull/57)).
10+
11+
### Bug Fixes
12+
13+
* Crash fixed, fetchQualifiedSegments without options ([#64](https://github.com/optimizely/optimizely-flutter-sdk/pull/64)).
14+
* Fix proguard for logback and dart version ([#68](https://github.com/optimizely/optimizely-flutter-sdk/pull/68)).
15+
16+
### Functionality Enhancements
17+
18+
* Update Github Issue Templates ([#65](https://github.com/optimizely/optimizely-flutter-sdk/pull/65)).
19+
* Add configurable log level support ([#63](https://github.com/optimizely/optimizely-flutter-sdk/pull/63)).
20+
321
## 2.0.0-beta
422
September 21, 2023
523

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ See the [pubspec.yaml](https://github.com/optimizely/optimizely-flutter-sdk/blob
2121

2222
On the Android platform, the SDK requires a minimum SDK version of 21 or higher and compile SDK version of 32.
2323

24-
On the iOS platform, the SDK requires a minimum version of 10.0.
24+
On the iOS platform, the SDK requires a minimum version of 11.0.
2525

2626
Other Flutter platforms are not currently supported by this SDK.
2727

@@ -30,7 +30,7 @@ Other Flutter platforms are not currently supported by this SDK.
3030
To add the flutter-sdk to your project dependencies, include the following in your app's pubspec.yaml:
3131

3232
```
33-
optimizely_flutter_sdk: ^1.0.1
33+
optimizely_flutter_sdk: ^2.0.0
3434
```
3535

3636
Then run

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ dependencies {
8383
implementation 'org.slf4j:slf4j-api:2.0.7'
8484

8585
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10"
86-
implementation "com.optimizely.ab:android-sdk:4.0.0-beta2"
86+
implementation "com.optimizely.ab:android-sdk:4.0.0"
8787
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4'
8888
implementation ('com.google.guava:guava:19.0') {
8989
exclude group:'com.google.guava', module:'listenablefuture'

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212
}
1313
ext {
14-
android_sdk_version = "4.0.0-beta3"
14+
android_sdk_version = "4.0.0"
1515
}
1616
allprojects {
1717
repositories {

ios/optimizely_flutter_sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source = { :path => '.' }
1414
s.source_files = 'Classes/**/*'
1515
s.dependency 'Flutter'
16-
s.dependency 'OptimizelySwiftSDK', '4.0.0-beta'
16+
s.dependency 'OptimizelySwiftSDK', '4.0.0'
1717
s.platform = :ios, '10.0'
1818
# Flutter.framework does not contain a i386 slice.
1919
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: optimizely_flutter_sdk
22
description: This repository houses the Flutter SDK for use with Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts.
3-
version: 2.0.0-beta
3+
version: 2.0.0
44
homepage: https://github.com/optimizely/optimizely-flutter-sdk
55

66
environment:

0 commit comments

Comments
 (0)