Skip to content

Commit ff76065

Browse files
committed
Prepared release 2.2.0
1 parent c6c092a commit ff76065

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Jayway JsonPath 2.1.0
1+
Jayway JsonPath 2.2.0
22
=====================
33

44
**A Java DSL for reading JSON documents.**
@@ -11,6 +11,8 @@ Jayway JsonPath is a Java port of [Stefan Goessner JsonPath implementation](http
1111

1212
News
1313
----
14+
29 Feb 2016 - Released JsonPath 2.2.0
15+
1416
22 Nov 2015 - Released JsonPath 2.1.0
1517

1618
19 Mar 2015 - Released JsonPath 2.0.0

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ ext {
2222

2323
test: ['org.slf4j:slf4j-simple:1.7.16', 'org.assertj:assertj-core:2.1.0', 'commons-io:commons-io:2.4','org.hamcrest:hamcrest-core:1.3', 'org.hamcrest:hamcrest-library:1.3', 'junit:junit:4.12']
2424
]
25-
snapshotVersion = true
25+
snapshotVersion = false
2626
}
2727

2828
allprojects {
2929
ext.displayName = null
3030
ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss')
3131

3232
group = 'com.jayway.jsonpath'
33-
version = '2.1.1' + (snapshotVersion ? "-SNAPSHOT" : "")
33+
version = '2.2.0' + (snapshotVersion ? "-SNAPSHOT" : "")
3434

3535
if (JavaVersion.current().isJava8Compatible()) {
3636
tasks.withType(Javadoc) {

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.2.0 (2016-02-29)
2+
===========
3+
* Upgraded dependency versions
4+
* Hamcrest-matcher support in json-path-assert
5+
* Bug fixes and improvements
6+
17
2.1.0 (2015-11-22)
28
===========
39
* Upgraded dependency versions

0 commit comments

Comments
 (0)