Skip to content

Commit c195d67

Browse files
authored
Release 0.2.0 (#141)
2 parents 7734177 + 4cfdebd commit c195d67

File tree

12 files changed

+42
-24
lines changed

12 files changed

+42
-24
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
steps:
6161
- uses: actions/checkout@v4
62-
- uses: subosito/flutter-action@v2.1.0
62+
- uses: subosito/flutter-action@v2
6363
with:
6464
channel: 'stable'
6565
- name: Run Build iOS

splitio/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.2.0 (Nov 6, 2024)
2+
* Added support for targeting rules based on large segments.
3+
* BREAKING CHANGE (for Split Proxy users):
4+
* Dropped support for Split Proxy below version `5.9.0`.
5+
* Updated iOS SDK to `3.0.0` & Android SDK to `5.0.0`.
6+
7+
# 0.2.0-rc.1 (Nov 6, 2024)
8+
19
# 0.1.10 (Oct 18, 2024)
210
* 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.
311
* Updated iOS SDK to `2.26.1` & Android SDK to `4.2.2`

splitio/example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- Split (2.26.1)
4-
- splitio_ios (0.6.0):
3+
- Split (3.0.0)
4+
- splitio_ios (0.7.0):
55
- Flutter
6-
- Split (~> 2.26.1)
6+
- Split (~> 3.0.0)
77

88
DEPENDENCIES:
99
- Flutter (from `Flutter`)
@@ -21,8 +21,8 @@ EXTERNAL SOURCES:
2121

2222
SPEC CHECKSUMS:
2323
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
24-
Split: 15cab642eb8b8bb4f289a2190f7b26e655f99756
25-
splitio_ios: 931b5df7148d0dca9acb31a65505bd619f198fcf
24+
Split: 66424040ad573d052f58269f841e71b34578a916
25+
splitio_ios: e4e3becbe89cae0a2fa9ca03a575c21f23af0d90
2626

2727
PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048
2828

splitio/example/pubspec.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,23 +166,23 @@ packages:
166166
path: ".."
167167
relative: true
168168
source: path
169-
version: "0.1.10"
169+
version: "0.2.0"
170170
splitio_android:
171171
dependency: transitive
172172
description:
173173
name: splitio_android
174-
sha256: b2ebb1ef9c9f1399b5dca7b008dd90f1cdf3c05da4da74154ff0a5489bafd114
174+
sha256: "44b0e1dddd374fc73fc1b5ef89598b96ea405d533a8211c06a45665f5d6187b5"
175175
url: "https://pub.dev"
176176
source: hosted
177-
version: "0.1.10"
177+
version: "0.2.0"
178178
splitio_ios:
179179
dependency: transitive
180180
description:
181181
name: splitio_ios
182-
sha256: bf59562ef13c55b528886f3f9383ec4a5608d9de42e910256ba7fb025b310fa0
182+
sha256: "7c7a2a60711b8e6267cde7e2754d30931dafc76b20b28e1356624963628cb166"
183183
url: "https://pub.dev"
184184
source: hosted
185-
version: "0.1.10"
185+
version: "0.2.0"
186186
splitio_platform_interface:
187187
dependency: transitive
188188
description:

splitio/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: splitio
22
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.
3-
version: 0.1.10
3+
version: 0.2.0
44
homepage: https://split.io/
55
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio/
66

@@ -19,8 +19,8 @@ flutter:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
splitio_android: ^0.1.10
23-
splitio_ios: ^0.1.10
22+
splitio_android: ^0.2.0
23+
splitio_ios: ^0.2.0
2424
splitio_platform_interface: ^1.5.0
2525

2626
dev_dependencies:

splitio_android/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.2.0 (Nov 6, 2024)
2+
* Updated Android SDK to `5.0.0`
3+
4+
# 0.2.0-rc.1 (Nov 6, 2024)
5+
16
# 0.1.10 (Oct 18, 2024)
27
* Updated Android SDK to `4.2.2`
38

splitio_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
}
3737

3838
dependencies {
39-
implementation 'io.split.client:android-client:4.2.2'
39+
implementation 'io.split.client:android-client:5.0.0'
4040

4141
testImplementation 'junit:junit:4.13.2'
4242
testImplementation 'org.mockito:mockito-core:3.12.4'

splitio_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: splitio_android
22
description: The official Android implementation of splitio Flutter plugin.
33
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_android
4-
version: 0.1.10
4+
version: 0.2.0
55

66
environment:
77
sdk: ">=2.16.2 <4.0.0"

splitio_ios/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.2.0 (Nov 6, 2024)
2+
* Updated iOS SDK to `3.0.0`
3+
4+
# 0.2.0-rc.1 (Nov 6, 2024)
5+
16
# 0.1.10 (Oct 18, 2024)
27
* Updated iOS SDK to `2.26.1`
38

splitio_ios/example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- Split (2.26.1)
4-
- splitio_ios (0.6.0):
3+
- Split (3.0.0)
4+
- splitio_ios (0.7.0):
55
- Flutter
6-
- Split (~> 2.26.1)
6+
- Split (~> 3.0.0)
77

88
DEPENDENCIES:
99
- Flutter (from `Flutter`)
@@ -21,8 +21,8 @@ EXTERNAL SOURCES:
2121

2222
SPEC CHECKSUMS:
2323
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
24-
Split: 15cab642eb8b8bb4f289a2190f7b26e655f99756
25-
splitio_ios: 931b5df7148d0dca9acb31a65505bd619f198fcf
24+
Split: 66424040ad573d052f58269f841e71b34578a916
25+
splitio_ios: e4e3becbe89cae0a2fa9ca03a575c21f23af0d90
2626

2727
PODFILE CHECKSUM: aed42fc5c94ade572556b7ed357c5c57f1bd83a2
2828

0 commit comments

Comments
 (0)