Browse Source

Released version 2.0.0.

pull/74/head json-path-2.0.0
Kalle Stenflo 9 years ago
parent
commit
e8dd68adad
  1. 3
      README.md
  2. 2
      build.gradle

3
README.md

@ -10,6 +10,7 @@ Jayway JsonPath is a Java port of [Stefan Goessner JsonPath implementation](http
News News
---- ----
19 Mar 2015 - Released JsonPath 2.0.0
11 Nov 2014 - Released JsonPath 1.2.0 11 Nov 2014 - Released JsonPath 1.2.0
01 Oct 2014 - Released JsonPath 1.1.0 01 Oct 2014 - Released JsonPath 1.1.0
26 Sep 2014 - Released JsonPath 1.0.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
<dependency> <dependency>
<groupId>com.jayway.jsonpath</groupId> <groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId> <artifactId>json-path</artifactId>
<version>1.2.0</version> <version>2.0.0</version>
</dependency> </dependency>
``` ```

2
build.gradle

@ -28,7 +28,7 @@ allprojects {
ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss') ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss')
group = 'com.jayway.jsonpath' group = 'com.jayway.jsonpath'
version = '1.3.0' + (snapshotVersion ? "-SNAPSHOT" : "") version = '2.0.1' + (snapshotVersion ? "-SNAPSHOT" : "")
if (JavaVersion.current().isJava8Compatible()) { if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) { tasks.withType(Javadoc) {

Loading…
Cancel
Save