Skip to content

Commit 512a72c

Browse files
authored
Merge pull request #883 from Iterable/evan/MOB-10928-prepare-version-3.6.0-beta2
[MOB-10928] updates changelog and version numbers
2 parents 66f0ed7 + 8da3c01 commit 512a72c

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [3.6.0-beta2]
6+
7+
#### Added
8+
- This release includes fixes for the Anonymous user activation private beta:
9+
- Criteria is now fetched on foregrounding the app by default. This feature can be turned off setting enableForegroundCriteriaFetch flag to false.
10+
- anonymous user ids are only generated once when multiple track calls are made.
11+
- 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).
12+
513
## [3.5.8]
614

715
### Fixed

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.6.0-beta1'
54+
libraryVersion = '3.6.0-beta2'
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 31
2121

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

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

8787
ext {
8888
libraryName = 'iterableapi'
89-
libraryVersion = '3.6.0-beta1'
89+
libraryVersion = '3.6.0-beta2'
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.6.0-beta1'
37-
implementation 'com.iterable:iterableapi-ui:3.6.0-beta1'
36+
implementation 'com.iterable:iterableapi:3.6.0-beta2'
37+
implementation 'com.iterable:iterableapi-ui:3.6.0-beta2'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)