diff --git a/CHANGELOG.md b/CHANGELOG.md index 37704ca0..f3a00b12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +Version 1.6.1 *(2016-07-28)* +---------------------------- + +* Fix: The `FlattenJson` annotation no longer causes the processor to fail when used on interfaces. (Issue [#47](../../issues/47)) +* Fix: Interfaces annotated with `@AutoGsonAdapter` now always correctly order their fields (Issue [#45](../../issues/47)) + * When using Json Path notation, if fields with the same parent were not grouped together, the constructor was being called with arguments in the wrong order. + Version 1.6.0 *(2016-07-28)* ---------------------------- diff --git a/README.md b/README.md index 21dc0c8b..9baafc67 100644 --- a/README.md +++ b/README.md @@ -205,6 +205,6 @@ public final class PersonModel_GsonTypeAdapter extends TypeAdapter This library is available on Maven, you can add it to your project using the following gradle dependencies: ```gradle -compile 'net.lachlanmckee:gsonpath:1.6.0' -apt 'net.lachlanmckee:gsonpath-compiler:1.6.0' +compile 'net.lachlanmckee:gsonpath:1.6.1' +apt 'net.lachlanmckee:gsonpath-compiler:1.6.1' ``` diff --git a/gsonpath-compiler/build.gradle b/gsonpath-compiler/build.gradle index 5fa0ed90..bed8d055 100644 --- a/gsonpath-compiler/build.gradle +++ b/gsonpath-compiler/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'maven' apply plugin: 'signing' group = 'net.lachlanmckee' -version = '1.6.0' +version = '1.6.1' targetCompatibility = JavaVersion.VERSION_1_7 sourceCompatibility = JavaVersion.VERSION_1_7 diff --git a/gsonpath/build.gradle b/gsonpath/build.gradle index 3aebde4c..cad890cf 100644 --- a/gsonpath/build.gradle +++ b/gsonpath/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'maven' apply plugin: 'signing' group = 'net.lachlanmckee' -version = '1.6.0' +version = '1.6.1' dependencies { compile fileTree(dir: 'libs', include: ['*.jar'])