Skip to content

Commit

Permalink
Updated to version 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanMcKee committed Dec 7, 2016
1 parent 61099b8 commit 3e9974e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
==========

Version 1.7.0 *(2016-12-06)*
----------------------------

* Fix: All method annotations defined within interfaces annotated with `@AutoGsonAdapter` are now copied to the concrete implementation methods.
* New: Classes and interfaces annotated with `@AutoGsonAdapter` can now be package private

Version 1.6.3 *(2016-11-09)*
----------------------------

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.3'
apt 'net.lachlanmckee:gsonpath-compiler:1.6.3'
compile 'net.lachlanmckee:gsonpath:1.7.0'
apt 'net.lachlanmckee:gsonpath-compiler:1.7.0'
```
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.3'
version = '1.7.0'

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.3'
version = '1.7.0'

targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 3e9974e

Please sign in to comment.