Skip to content

Commit 198f72d

Browse files
author
Evan Greer
committed
updates changelog and version numbers
1 parent 66f0ed7 commit 198f72d

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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'

sample-apps/inbox-customization/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.5.8'
11+
classpath 'com.android.tools.build:gradle:3.6.0-beta2'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

0 commit comments

Comments
 (0)