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..4c4fba3 100644 --- a/ok2curl/build.gradle +++ b/ok2curl/build.gradle @@ -2,7 +2,7 @@ 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 @@ -12,7 +12,7 @@ android { 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..c43f4c9 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -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' }