diff --git a/CHANGELOG.md b/CHANGELOG.md index be62b37e..4c06bf51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.0.43 (7/24/2017) + +#### Features + +* [#287](https://github.com/anjlab/android-inapp-billing-v3/pull/287): Support for getBuyIntentExtraParams() - [@ratm](https://github.com/ratm). + ## 1.0.42 (7/7/2017) #### Bug Fixes diff --git a/README.md b/README.md index 84087994..63724037 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ repositories { mavenCentral() } dependencies { - compile 'com.anjlab.android.iab.v3:library:1.0.+' + compile 'com.anjlab.android.iab.v3:library:1.0.43' } ``` diff --git a/build.gradle b/build.gradle index 5c4b2536..77d53d3e 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.2' + classpath 'com.android.tools.build:gradle:2.3.3' classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.7.0' } } diff --git a/library/build.gradle b/library/build.gradle index 5ecc1921..1ffde412 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'signing' apply plugin: 'checkstyle' group 'com.anjlab.android.iab.v3' -version '1.0.42' +version '1.0.43' android { compileSdkVersion 23 @@ -39,7 +39,7 @@ dependencies { configurations.archives.extendsFrom configurations.default signing { - required { has("release") && gradle.taskGraph.hasTask("uploadArchives") } + required { gradle.taskGraph.hasTask("uploadArchives") } sign configurations.archives } diff --git a/sample/libs/anjlab-iabv3-current.jar b/sample/libs/anjlab-iabv3-current.jar index bf8403f2..071cd0e4 100644 Binary files a/sample/libs/anjlab-iabv3-current.jar and b/sample/libs/anjlab-iabv3-current.jar differ