Browse Source

Release 2.5.0

pull/598/merge json-path-2.5.0
Kalle Stenflo 4 years ago
parent
commit
8ad4743998
  1. 4
      README.md
  2. 2
      build.gradle

4
README.md

@ -11,6 +11,8 @@ Jayway JsonPath is a Java port of [Stefan Goessner JsonPath implementation](http
News
----
10 Dec 2020 - Released JsonPath 2.5.0
05 Jul 2017 - Released JsonPath 2.4.0
26 Jun 2017 - Released JsonPath 2.3.0
@ -37,7 +39,7 @@ JsonPath is available at the Central Maven Repository. Maven users add this to y
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<version>2.5.0</version>
</dependency>
```

2
build.gradle

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

Loading…
Cancel
Save