From a57a61c0b83829234996042f3d3ed0d4eae552a8 Mon Sep 17 00:00:00 2001 From: Yuri Shmakov Date: Tue, 6 Dec 2016 18:25:45 +0700 Subject: [PATCH] [artifact] Prepare version 1.3.3 --- README.md | 12 ++++++------ build.gradle | 4 ++-- sample-github/build.gradle | 6 +++--- sample-kotlin/build.gradle | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 41e0c94f..a09f86c6 100644 --- a/README.md +++ b/README.md @@ -76,29 +76,29 @@ Base modules integration: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy:1.3.2' - provided 'com.arello-mobile:moxy-compiler:1.3.2' + compile 'com.arello-mobile:moxy:1.3.3' + provided 'com.arello-mobile:moxy-compiler:1.3.3' } ``` If you want to see generated code, use `apt` instead of `provided` dependency type: ```groovy dependencies { ... - apt 'com.arello-mobile:moxy-compiler:1.3.2' + apt 'com.arello-mobile:moxy-compiler:1.3.3' } ``` For additional base view classes `MvpActivity` and `MvpFragment` add this: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy-android:1.3.2' + compile 'com.arello-mobile:moxy-android:1.3.3' } ``` If you planing to use AppCompat, then you can use `MvpAppCompatActivity` and `MvpAppCompatFragment`. Then add this: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy-app-compat:1.3.2' + compile 'com.arello-mobile:moxy-app-compat:1.3.3' compile 'com.android.support:appcompat-v7:$support_version' } ``` @@ -107,7 +107,7 @@ If you are using kotlin, use `kapt` instead of `provided`/`apt` dependency type ```groovy dependencies { ... - kapt 'com.arello-mobile:moxy-compiler:1.3.2' + kapt 'com.arello-mobile:moxy-compiler:1.3.3' } kapt { generateStubs = true diff --git a/build.gradle b/build.gradle index b6011d21..e680b15b 100644 --- a/build.gradle +++ b/build.gradle @@ -20,8 +20,8 @@ allprojects { } ext { - targetVersionCode = 31 - targetVersionName = "1.3.2" + targetVersionCode = 32 + targetVersionName = "1.3.3" } task clean(type: Delete) { diff --git a/sample-github/build.gradle b/sample-github/build.gradle index 3d2aba89..b322bd02 100644 --- a/sample-github/build.gradle +++ b/sample-github/build.gradle @@ -69,7 +69,7 @@ dependencies { testCompile "org.hamcrest:hamcrest-all:1.3" testCompile "org.robolectric:robolectric:3.1-rc1" - compile 'com.arello-mobile:moxy:1.3.2' - compile 'com.arello-mobile:moxy-app-compat:1.3.2' - apt 'com.arello-mobile:moxy-compiler:1.3.2' + compile 'com.arello-mobile:moxy:1.3.3' + compile 'com.arello-mobile:moxy-app-compat:1.3.3' + apt 'com.arello-mobile:moxy-compiler:1.3.3' } \ No newline at end of file diff --git a/sample-kotlin/build.gradle b/sample-kotlin/build.gradle index d676c4e8..f71af186 100644 --- a/sample-kotlin/build.gradle +++ b/sample-kotlin/build.gradle @@ -40,9 +40,9 @@ android { dependencies { compile 'com.android.support:appcompat-v7:25.0.0' - compile 'com.arello-mobile:moxy:1.3.2' - compile 'com.arello-mobile:moxy-app-compat:1.3.2' - kapt 'com.arello-mobile:moxy-compiler:1.3.2' + compile 'com.arello-mobile:moxy:1.3.3' + compile 'com.arello-mobile:moxy-app-compat:1.3.3' + kapt 'com.arello-mobile:moxy-compiler:1.3.3' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" }