diff --git a/README.md b/README.md index 608c6403..21494e01 100644 --- a/README.md +++ b/README.md @@ -76,22 +76,22 @@ Base modules integration: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy:1.5.2' - annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.2' + compile 'com.arello-mobile:moxy:1.5.3' + annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3' } ``` For additional base view classes `MvpActivity` and `MvpFragment` add this: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy-android:1.5.2' + compile 'com.arello-mobile:moxy-android:1.5.3' } ``` If you are planing to use AppCompat, then you can use `MvpAppCompatActivity` and `MvpAppCompatFragment`. Then add this: ```groovy dependencies { ... - compile 'com.arello-mobile:moxy-app-compat:1.5.2' + compile 'com.arello-mobile:moxy-app-compat:1.5.3' compile 'com.android.support:appcompat-v7:$support_version' } ``` @@ -100,7 +100,7 @@ If you are using kotlin, use `kapt` instead of `provided`/`apt` dependency type ```groovy dependencies { ... - kapt 'com.arello-mobile:moxy-compiler:1.5.2' + kapt 'com.arello-mobile:moxy-compiler:1.5.3' } kapt { generateStubs = true diff --git a/build.gradle b/build.gradle index bfbdce44..dd64dd03 100644 --- a/build.gradle +++ b/build.gradle @@ -19,8 +19,8 @@ allprojects { } ext { - targetVersionCode = 42 - targetVersionName = "1.5.2" + targetVersionCode = 43 + targetVersionName = "1.5.3" } task clean(type: Delete) { diff --git a/sample-github/build.gradle b/sample-github/build.gradle index a9ecbdfa..852dd309 100644 --- a/sample-github/build.gradle +++ b/sample-github/build.gradle @@ -68,7 +68,7 @@ dependencies { testCompile "org.hamcrest:hamcrest-all:1.3" testCompile "org.robolectric:robolectric:3.1-rc1" - compile 'com.arello-mobile:moxy:1.5.2' - compile 'com.arello-mobile:moxy-app-compat:1.5.2' - annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.2' + compile 'com.arello-mobile:moxy:1.5.3' + compile 'com.arello-mobile:moxy-app-compat:1.5.3' + annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3' } \ No newline at end of file diff --git a/sample-kotlin/build.gradle b/sample-kotlin/build.gradle index 59e4366a..83be63d5 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.5.2' - compile 'com.arello-mobile:moxy-app-compat:1.5.2' - kapt 'com.arello-mobile:moxy-compiler:1.5.2' + compile 'com.arello-mobile:moxy:1.5.3' + compile 'com.arello-mobile:moxy-app-compat:1.5.3' + kapt 'com.arello-mobile:moxy-compiler:1.5.3' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" }