From ed4fb504a3a385bdfd6c360e43861151120f50f2 Mon Sep 17 00:00:00 2001 From: Saeed Masoumi Date: Mon, 28 Nov 2016 20:27:19 +0330 Subject: [PATCH] Prepare for release 1.0.4 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- RELEASING.md | 2 +- gradle.properties | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 404145d..a6568de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +Version 1.0.4 +------------- + +_2016-11-28_ + +* Use [LoaderManager](https://developer.android.com/reference/android/app/LoaderManager.html) for `android.app.Activity` [#16](https://github.com/6thsolution/EasyMVP/issues/16) + Version 1.0.3 ------------- diff --git a/README.md b/README.md index 6e74a94..d7f52a5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.sixthsolution.easymvp:easymvp-plugin:1.0.3' + classpath 'com.sixthsolution.easymvp:easymvp-plugin:1.0.4' } } ``` diff --git a/RELEASING.md b/RELEASING.md index fc37844..5e2f724 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -4,7 +4,7 @@ Releasing 1. Change the version in `gradle.properties` to a non-SNAPSHOT version. 2. Update the `CHANGELOG.md`. 3. Update the `README.md` with the new version. -4. `git commit -am "Prepare for release x.y.z."` +4. `git commit -am "Prepare for release x.y.z"` 5. `git push` (travis will build and upload artifacts) 6. `git tag -a x.y.z -m "Version x.y.z"` 7. Update the `gradle.properties` to the next SNAPSHOT version. diff --git a/gradle.properties b/gradle.properties index 1ae396f..b69e489 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ GROUP=com.sixthsolution.easymvp -VERSION_NAME=1.0.4-SNAPSHOT +VERSION_NAME=1.0.4 org.gradle.jvmargs=-Xmx2048m \ No newline at end of file