Skip to content

Commit 3b87dec

Browse files
authored
Merge pull request #840 from Iterable/evan/MOB-10116-3.6.0-beta
[MOB-10116] prepares for 3.6.0-beta release
2 parents 6ca540c + dca9271 commit 3b87dec

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1313
#### Changed
1414
- nothing yet
1515

16+
## [3.6.0-beta1]
17+
18+
#### Added
19+
- This release includes initial support for Anonymous user activation, a feature that allows marketers to convert valuable visitors into customers. With this feature, the SDK can:
20+
- Fetch anonymous profile creation criteria from your Iterable project, and then automatically create Iterable user profiles for anonymous users who meet these criteria.
21+
- Save information about a user's previous interactions with your application to their anonymous profile, after it's created.
22+
- Display personalized messages for anonymous users (in-app, push, and embedded messages).
23+
- Merge anonymous profiles into an existing, known user profiles (when needed).
24+
- Anonymous user activation is currently in private beta. If you'd like to learn more about it or discuss using it, talk to your Iterable customer success manager (who can also provide detailed documentation).
25+
1626
## [3.5.3]
1727
#### Fixed
1828
- Fixed an [issue](https://github.com/Iterable/react-native-sdk/issues/547) where the SDK would crash if the `IterableInAppMessage` object was null when consuming an in-app message.

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151

5252
ext {
5353
libraryName = 'iterableapi-ui'
54-
libraryVersion = '3.5.3'
54+
libraryVersion = '3.6.0-beta1'
5555
}
5656

5757
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
minSdkVersion 16
2020
targetSdkVersion 27
2121

22-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.3\""
22+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.0-beta1\""
2323

2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
}
@@ -86,7 +86,7 @@ dependencies {
8686

8787
ext {
8888
libraryName = 'iterableapi'
89-
libraryVersion = '3.5.3'
89+
libraryVersion = '3.6.0-beta1'
9090
}
9191

9292
if (hasProperty("mavenPublishEnabled")) {

sample-apps/inbox-customization/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
3434
implementation 'com.google.android.material:material:1.1.0'
3535

36-
implementation 'com.iterable:iterableapi:3.5.3'
37-
implementation 'com.iterable:iterableapi-ui:3.5.3'
36+
implementation 'com.iterable:iterableapi:3.6.0-beta1'
37+
implementation 'com.iterable:iterableapi-ui:3.6.0-beta1'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)