From f333d081657cc49a8fd4855441bd9476c86560f5 Mon Sep 17 00:00:00 2001 From: LachlanMcKee Date: Wed, 9 Nov 2016 22:00:06 +1100 Subject: [PATCH] Fixed Java 7 build issues and updated to version 1.6.3 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- gsonpath-compiler/build.gradle | 2 +- gsonpath/build.gradle | 5 ++++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 493ec095..73daf88a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +Version 1.6.3 *(2016-11-09)* +---------------------------- + +* Fix: Added Java 7 target and source compatibility for all libraries. + Version 1.6.2 *(2016-10-22)* ---------------------------- diff --git a/README.md b/README.md index bc6365e8..0248899e 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.2' -apt 'net.lachlanmckee:gsonpath-compiler:1.6.2' +compile 'net.lachlanmckee:gsonpath:1.6.3' +apt 'net.lachlanmckee:gsonpath-compiler:1.6.3' ``` diff --git a/gsonpath-compiler/build.gradle b/gsonpath-compiler/build.gradle index e5f188f1..ffe0afdd 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.2' +version = '1.6.3' targetCompatibility = JavaVersion.VERSION_1_7 sourceCompatibility = JavaVersion.VERSION_1_7 diff --git a/gsonpath/build.gradle b/gsonpath/build.gradle index 0db42deb..e88151a3 100644 --- a/gsonpath/build.gradle +++ b/gsonpath/build.gradle @@ -3,7 +3,10 @@ apply plugin: 'maven' apply plugin: 'signing' group = 'net.lachlanmckee' -version = '1.6.2' +version = '1.6.3' + +targetCompatibility = JavaVersion.VERSION_1_7 +sourceCompatibility = JavaVersion.VERSION_1_7 dependencies { compile fileTree(dir: 'libs', include: ['*.jar'])