From e8dd68adad055c9ff83f9adc6e41956eaa5e3033 Mon Sep 17 00:00:00 2001 From: Kalle Stenflo Date: Thu, 19 Mar 2015 20:00:26 +0100 Subject: [PATCH] Released version 2.0.0. --- README.md | 3 ++- build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a76a8c90..a766e816 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Jayway JsonPath is a Java port of [Stefan Goessner JsonPath implementation](http News ---- +19 Mar 2015 - Released JsonPath 2.0.0 11 Nov 2014 - Released JsonPath 1.2.0 01 Oct 2014 - Released JsonPath 1.1.0 26 Sep 2014 - Released JsonPath 1.0.0 @@ -25,7 +26,7 @@ JsonPath is available at the Central Maven Repository. Maven users add this to y com.jayway.jsonpath json-path - 1.2.0 + 2.0.0 ``` diff --git a/build.gradle b/build.gradle index 71e9669a..4713fbf7 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ allprojects { ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss') group = 'com.jayway.jsonpath' - version = '1.3.0' + (snapshotVersion ? "-SNAPSHOT" : "") + version = '2.0.1' + (snapshotVersion ? "-SNAPSHOT" : "") if (JavaVersion.current().isJava8Compatible()) { tasks.withType(Javadoc) {