Skip to content

Release 0.2.0 #141

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2.1.0
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Run Build iOS
Expand Down
8 changes: 8 additions & 0 deletions splitio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.2.0 (Nov 6, 2024)
* Added support for targeting rules based on large segments.
* BREAKING CHANGE (for Split Proxy users):
* Dropped support for Split Proxy below version `5.9.0`.
* Updated iOS SDK to `3.0.0` & Android SDK to `5.0.0`.

# 0.2.0-rc.1 (Nov 6, 2024)

# 0.1.10 (Oct 18, 2024)
* Added certificate pinning functionality. This feature allows you to pin a certificate to the SDK, ensuring that the SDK only communicates with servers that present this certificate. Read more in our documentation.
* Updated iOS SDK to `2.26.1` & Android SDK to `4.2.2`
Expand Down
10 changes: 5 additions & 5 deletions splitio/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Flutter (1.0.0)
- Split (2.26.1)
- splitio_ios (0.6.0):
- Split (3.0.0)
- splitio_ios (0.7.0):
- Flutter
- Split (~> 2.26.1)
- Split (~> 3.0.0)

DEPENDENCIES:
- Flutter (from `Flutter`)
Expand All @@ -21,8 +21,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
Split: 15cab642eb8b8bb4f289a2190f7b26e655f99756
splitio_ios: 931b5df7148d0dca9acb31a65505bd619f198fcf
Split: 66424040ad573d052f58269f841e71b34578a916
splitio_ios: e4e3becbe89cae0a2fa9ca03a575c21f23af0d90

PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048

Expand Down
10 changes: 5 additions & 5 deletions splitio/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -166,23 +166,23 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.10"
version: "0.2.0"
splitio_android:
dependency: transitive
description:
name: splitio_android
sha256: b2ebb1ef9c9f1399b5dca7b008dd90f1cdf3c05da4da74154ff0a5489bafd114
sha256: "44b0e1dddd374fc73fc1b5ef89598b96ea405d533a8211c06a45665f5d6187b5"
url: "https://pub.dev"
source: hosted
version: "0.1.10"
version: "0.2.0"
splitio_ios:
dependency: transitive
description:
name: splitio_ios
sha256: bf59562ef13c55b528886f3f9383ec4a5608d9de42e910256ba7fb025b310fa0
sha256: "7c7a2a60711b8e6267cde7e2754d30931dafc76b20b28e1356624963628cb166"
url: "https://pub.dev"
source: hosted
version: "0.1.10"
version: "0.2.0"
splitio_platform_interface:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions splitio/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: splitio
description: Official plugin for split.io, the platform for controlled rollouts, which serves features to your users via feature flags to manage your complete customer experience.
version: 0.1.10
version: 0.2.0
homepage: https://split.io/
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio/

Expand All @@ -19,8 +19,8 @@ flutter:
dependencies:
flutter:
sdk: flutter
splitio_android: ^0.1.10
splitio_ios: ^0.1.10
splitio_android: ^0.2.0
splitio_ios: ^0.2.0
splitio_platform_interface: ^1.5.0

dev_dependencies:
Expand Down
5 changes: 5 additions & 0 deletions splitio_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.2.0 (Nov 6, 2024)
* Updated Android SDK to `5.0.0`

# 0.2.0-rc.1 (Nov 6, 2024)

# 0.1.10 (Oct 18, 2024)
* Updated Android SDK to `4.2.2`

Expand Down
2 changes: 1 addition & 1 deletion splitio_android/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {
}

dependencies {
implementation 'io.split.client:android-client:4.2.2'
implementation 'io.split.client:android-client:5.0.0'

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.12.4'
Expand Down
2 changes: 1 addition & 1 deletion splitio_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: splitio_android
description: The official Android implementation of splitio Flutter plugin.
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_android
version: 0.1.10
version: 0.2.0

environment:
sdk: ">=2.16.2 <4.0.0"
Expand Down
5 changes: 5 additions & 0 deletions splitio_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.2.0 (Nov 6, 2024)
* Updated iOS SDK to `3.0.0`

# 0.2.0-rc.1 (Nov 6, 2024)

# 0.1.10 (Oct 18, 2024)
* Updated iOS SDK to `2.26.1`

Expand Down
10 changes: 5 additions & 5 deletions splitio_ios/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Flutter (1.0.0)
- Split (2.26.1)
- splitio_ios (0.6.0):
- Split (3.0.0)
- splitio_ios (0.7.0):
- Flutter
- Split (~> 2.26.1)
- Split (~> 3.0.0)

DEPENDENCIES:
- Flutter (from `Flutter`)
Expand All @@ -21,8 +21,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
Split: 15cab642eb8b8bb4f289a2190f7b26e655f99756
splitio_ios: 931b5df7148d0dca9acb31a65505bd619f198fcf
Split: 66424040ad573d052f58269f841e71b34578a916
splitio_ios: e4e3becbe89cae0a2fa9ca03a575c21f23af0d90

PODFILE CHECKSUM: aed42fc5c94ade572556b7ed357c5c57f1bd83a2

Expand Down
4 changes: 2 additions & 2 deletions splitio_ios/ios/splitio_ios.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'splitio_ios'
s.version = '0.6.0'
s.version = '0.7.0'
s.summary = 'split.io official Flutter plugin.'
s.description = <<-DESC
split.io official Flutter plugin.
Expand All @@ -15,7 +15,7 @@ split.io official Flutter plugin.
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'Split', '~> 2.26.1'
s.dependency 'Split', '~> 3.0.0'
s.platform = :ios, '9.0'

# Flutter.framework does not contain a i386 slice.
Expand Down
2 changes: 1 addition & 1 deletion splitio_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: splitio_ios
description: The official iOS implementation of splitio Flutter plugin.
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_ios
version: 0.1.10
version: 0.2.0

environment:
sdk: ">=2.16.2 <4.0.0"
Expand Down