Skip to content

Commit

Permalink
feat/Version 3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Apr 16, 2024
1 parent b35851c commit c7717b4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
## :arrow_double_up: [SDK version update guide](./../Guides/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 3.13.0
#### April 16, 2024
* Features
* Segmentation API feature support
* Bug Fixes
* Fixed: Customer Token authorization could be forced to used after anonymization


## Release Notes for 3.12.0
#### March 28, 2024
* Features
Expand Down
2 changes: 1 addition & 1 deletion Guides/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
2. Add ExponeaSDK dependency and sync your project
```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:3.12.0'
implementation 'com.exponea.sdk:sdk:3.13.0'
}
```
3. After synchronization is complete, you can start using the SDK.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Download via Gradle:

```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:3.12.0'
implementation 'com.exponea.sdk:sdk:3.13.0'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 33
versionCode 79
versionName "3.12.0"
versionCode 80
versionName "3.13.0"
vectorDrawables.useSupportLibrary = true
}
compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 33
buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.12.0"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "74"
buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.13.0"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "75"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit c7717b4

Please sign in to comment.