Skip to content

Commit

Permalink
Updated documentation for 1.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanMcKee committed Aug 24, 2016
1 parent 80ccc83 commit 5e8fd1a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,6 @@ public final class PersonModel_GsonTypeAdapter extends TypeAdapter<PersonModel>
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'
```
2 changes: 1 addition & 1 deletion gsonpath-compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gsonpath/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit 5e8fd1a

Please sign in to comment.