Skip to content

Commit

Permalink
feat/Update version to 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wassil committed Dec 20, 2019
1 parent f3a5c27 commit 8fc1685
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Release Notes

## Release Notes for 2.6.1
#### December 20, 2019
* Bug Fixes
* Fixed: Google Play Billing Library version > 2.0 would cause the SDK to fail to initialize properly. To mitigate the issue, SDK now only disables automatic payment tracking. Proper solution will be implemented later.

## Release Notes for 2.6.0
#### November 26, 2019
* Features
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 {
compile 'com.exponea.sdk:sdk:2.6.0'
compile 'com.exponea.sdk:sdk:2.6.1'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.6.0</version>
<version>2.6.1</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 @@ -8,8 +8,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 35
versionName "2.6.0"
versionCode 36
versionName "2.6.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

vectorDrawables.useSupportLibrary = true
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 14
targetSdkVersion 27
versionCode 30
versionName "2.6.0"
versionCode 31
versionName "2.6.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/maven-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allprojects { ext."signing.password" = System.getenv('password') }

// Artifact settings
def _group = 'com.exponea.sdk'
def _version = '2.6.0'
def _version = '2.6.1'
def _archivesBaseName = 'sdk'

def _name = 'Exponea Sdk Library '
Expand Down

0 comments on commit 8fc1685

Please sign in to comment.