From 3c18c2bbb126aa0f3e57b51dc5e0ef0821ec75c5 Mon Sep 17 00:00:00 2001 From: Kaloyan Raev Date: Thu, 29 Aug 2019 18:50:02 +0300 Subject: [PATCH] Prepare 0.12.0 release --- README.md | 2 +- android-libstorj/build.gradle | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cd1dba1..f92d75f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add the Gradle dependency to the `build.gradle` file of the app module: ```Gradle dependencies { - implementation 'io.storj:libstorj-android-v3:0.11.0' + implementation 'io.storj:libstorj-android-v3:0.12.0' } ``` diff --git a/android-libstorj/build.gradle b/android-libstorj/build.gradle index fc21108..5216004 100644 --- a/android-libstorj/build.gradle +++ b/android-libstorj/build.gradle @@ -6,8 +6,8 @@ android { defaultConfig { minSdkVersion 21 targetSdkVersion 26 - versionCode 15 - versionName "0.11.0" + versionCode 16 + versionName "0.12.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { @@ -33,7 +33,7 @@ publish { userOrg = 'storj' groupId = 'io.storj' artifactId = 'libstorj-android-v3' - publishVersion = '0.11.0' + publishVersion = '0.12.0' desc = 'Libstorj for Android (Storj V3 compatible)' website = 'https://github.com/storj/android-libstorj' } @@ -42,5 +42,5 @@ dependencies { testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - implementation 'io.storj:libuplink-android:0.6' + implementation 'io.storj:libuplink-android:0.7' }