From eea3fb4ef15b13a815a696ec949ecb51fe10d184 Mon Sep 17 00:00:00 2001 From: Michal Moczulski Date: Thu, 7 Jan 2016 09:55:11 +0100 Subject: [PATCH 1/2] Bump version to 0.1.0 --- README.md | 2 +- ok2curl/build.gradle | 6 +++--- sample/build.gradle | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fd96a8b..560d1cb 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ repositories { } dependencies { - compile 'com.github.mrmike:Ok2Curl:0.0.4' + compile 'com.github.mrmike:Ok2Curl:0.1.0' } ``` diff --git a/ok2curl/build.gradle b/ok2curl/build.gradle index 395f0d8..0fceb49 100644 --- a/ok2curl/build.gradle +++ b/ok2curl/build.gradle @@ -2,17 +2,17 @@ apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' group='com.github.mrmike' -version='0.0.4' +version='0.1.0' android { compileSdkVersion 23 - buildToolsVersion "23.0.1" + buildToolsVersion "23.0.2" defaultConfig { minSdkVersion 14 targetSdkVersion 23 versionCode 4 - versionName "0.0.4" + versionName "0.1.0" } buildTypes { release { diff --git a/sample/build.gradle b/sample/build.gradle index ee0f92b..709bc65 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 23 - buildToolsVersion "23.0.1" + buildToolsVersion "23.0.2" defaultConfig { applicationId "com.moczul.sample" @@ -27,19 +27,19 @@ dependencies { compile project(':ok2curl') /** - * compile 'com.github.mrmike:Ok2Curl:0.0.4' + * compile 'com.github.mrmike:Ok2Curl:0.1.0' */ /** * Ok2Curl is packed with the latest version of OkHttp. If you already have OkHttp declared in * your dependencies or want to use different version simply add exclude module. * - * compile ('com.github.mrmike:Ok2Curl:0.0.4') { + * compile ('com.github.mrmike:Ok2Curl:0.1.0') { * exclude module: 'okhttp' * } */ - compile 'com.android.support:appcompat-v7:23.0.1' + compile 'com.android.support:appcompat-v7:23.1.1' testCompile 'junit:junit:4.12' } From ea748002138bebb90dcf5f015d14a5cfef2d3478 Mon Sep 17 00:00:00 2001 From: Michal Moczulski Date: Thu, 7 Jan 2016 10:04:28 +0100 Subject: [PATCH 2/2] [Travis] Use 23.0.1 build tools --- ok2curl/build.gradle | 2 +- sample/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ok2curl/build.gradle b/ok2curl/build.gradle index 0fceb49..4c4fba3 100644 --- a/ok2curl/build.gradle +++ b/ok2curl/build.gradle @@ -6,7 +6,7 @@ version='0.1.0' android { compileSdkVersion 23 - buildToolsVersion "23.0.2" + buildToolsVersion "23.0.1" defaultConfig { minSdkVersion 14 diff --git a/sample/build.gradle b/sample/build.gradle index 709bc65..c43f4c9 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 23 - buildToolsVersion "23.0.2" + buildToolsVersion "23.0.1" defaultConfig { applicationId "com.moczul.sample"