From 0a5ada939a1ed2bbb0650c958cc81d925e19b702 Mon Sep 17 00:00:00 2001 From: Hannes Dorfmann Date: Mon, 15 May 2017 10:38:21 +0200 Subject: [PATCH] Releasing 3.0.4 --- README.md | 21 +++++++++++---------- gradle.properties | 4 ++-- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 80acac6f..cd9daf41 100644 --- a/README.md +++ b/README.md @@ -10,23 +10,24 @@ Check the [project website](http://hannesdorfmann.com/mosby/) for more informati ```groovy dependencies { - compile 'com.hannesdorfmann.mosby3:mvi:3.0.3' // Model-View-Intent + compile 'com.hannesdorfmann.mosby3:mvi:3.0.4' // Model-View-Intent // or - compile 'com.hannesdorfmann.mosby3:mvp:3.0.3' // Plain MVP + compile 'com.hannesdorfmann.mosby3:mvp:3.0.4' // Plain MVP // or - compile 'com.hannesdorfmann.mosby3:viewstate:3.0.3' // MVP + ViewState support + compile 'com.hannesdorfmann.mosby3:viewstate:3.0.4' // MVP + ViewState support } ``` + Additional modules: ```groovy dependencies { // MVP + ViewState + LCE Views - compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.3' + compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.4' // Null Object Presenter for MVP - compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.3' + compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.4' } ``` @@ -34,13 +35,13 @@ SNAPSHOT: ```groovy dependencies { - compile 'com.hannesdorfmann.mosby3:mvi:3.0.4-SNAPSHOT' + compile 'com.hannesdorfmann.mosby3:mvi:3.0.5-SNAPSHOT' - compile 'com.hannesdorfmann.mosby3:mvp:3.0.4-SNAPSHOT' - compile 'com.hannesdorfmann.mosby3:viewstate:3.0.4-SNAPSHOT' + compile 'com.hannesdorfmann.mosby3:mvp:3.0.5-SNAPSHOT' + compile 'com.hannesdorfmann.mosby3:viewstate:3.0.5-SNAPSHOT' - compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.4-SNAPSHOT' - compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.4-SNAPSHOT' + compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.5-SNAPSHOT' + compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.5-SNAPSHOT' } ``` diff --git a/gradle.properties b/gradle.properties index 32ffa542..f4e13355 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,8 +18,8 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=3.0.4-SNAPSHOT -VERSION_CODE=304 +VERSION_NAME=3.0.5-SNAPSHOT +VERSION_CODE=305 GROUP=com.hannesdorfmann.mosby3 POM_DESCRIPTION=A Model-View-Presenter library for Android apps