From cff8b62f5a0c4cb812a8d128c74070c362d213b4 Mon Sep 17 00:00:00 2001 From: Brad Campbell Date: Sun, 2 Jun 2019 21:43:03 +0100 Subject: [PATCH] Prepare for release 2.0.7 --- CHANGELOG.md | 5 +++++ README.md | 10 +++++----- docs/index.html | 12 ++++++------ gradle.properties | 2 +- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03063bc1..d40f7faa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +Version 2.0.7 *(2019-06-02)* +---------------------------- + +* Support incremental annotation processing (thanks @bejibx!) + Version 2.0.6 *(2018-05-01)* ---------------------------- diff --git a/README.md b/README.md index 7d11bd6d..6ea44f43 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ For more information please see [the website](http://grandstaish.github.io/paper ```groovy dependencies { - compile 'nz.bradcampbell:paperparcel:2.0.6' - annotationProcessor 'nz.bradcampbell:paperparcel-compiler:2.0.6' + compile 'nz.bradcampbell:paperparcel:2.0.7' + annotationProcessor 'nz.bradcampbell:paperparcel-compiler:2.0.7' } ``` @@ -24,9 +24,9 @@ dependencies { apply plugin: 'kotlin-kapt' dependencies { - compile 'nz.bradcampbell:paperparcel:2.0.6' - compile 'nz.bradcampbell:paperparcel-kotlin:2.0.6' // Optional - kapt 'nz.bradcampbell:paperparcel-compiler:2.0.6' + compile 'nz.bradcampbell:paperparcel:2.0.7' + compile 'nz.bradcampbell:paperparcel-kotlin:2.0.7' // Optional + kapt 'nz.bradcampbell:paperparcel-compiler:2.0.7' } ``` diff --git a/docs/index.html b/docs/index.html index 3a22f2c5..0f3f0c25 100644 --- a/docs/index.html +++ b/docs/index.html @@ -14,7 +14,7 @@

PaperParcel

Android Parcelable boilerplate annotation processor

View on GitHub - Download v2.0.6 + Download v2.0.7 View Javadoc @@ -243,17 +243,17 @@

Java:

dependencies {
-  compile 'nz.bradcampbell:paperparcel:2.0.6'
-  annotationProcessor 'nz.bradcampbell:paperparcel-compiler:2.0.6'
+  compile 'nz.bradcampbell:paperparcel:2.0.7'
+  annotationProcessor 'nz.bradcampbell:paperparcel-compiler:2.0.7'
 }

Kotlin:

apply plugin: 'kotlin-kapt'
 
 dependencies {
-  compile 'nz.bradcampbell:paperparcel:2.0.6'
-  compile 'nz.bradcampbell:paperparcel-kotlin:2.0.6' // Optional
-  kapt 'nz.bradcampbell:paperparcel-compiler:2.0.6'
+  compile 'nz.bradcampbell:paperparcel:2.0.7'
+  compile 'nz.bradcampbell:paperparcel-kotlin:2.0.7' // Optional
+  kapt 'nz.bradcampbell:paperparcel-compiler:2.0.7'
 }

Development snapshots are available on JFrog OSS Artifactory.

diff --git a/gradle.properties b/gradle.properties index 6a0343c6..37014f39 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=nz.bradcampbell -VERSION_NAME=2.0.7-SNAPSHOT +VERSION_NAME=2.0.7 POM_DESCRIPTION=Android Parcelable boilerplate annotation processor