Skip to content

Commit

Permalink
Prepared release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kallestenflo committed Feb 29, 2016
1 parent c6c092a commit ff76065
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Jayway JsonPath 2.1.0
Jayway JsonPath 2.2.0
=====================

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

News
----
29 Feb 2016 - Released JsonPath 2.2.0

22 Nov 2015 - Released JsonPath 2.1.0

19 Mar 2015 - Released JsonPath 2.0.0
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ ext {

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']
]
snapshotVersion = true
snapshotVersion = false
}

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

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

if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.2.0 (2016-02-29)
===========
* Upgraded dependency versions
* Hamcrest-matcher support in json-path-assert
* Bug fixes and improvements

2.1.0 (2015-11-22)
===========
* Upgraded dependency versions
Expand Down

2 comments on commit ff76065

@pmouawad
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello,
First thanks for this nice library.
Second, just to ask if it would be possible to have more details on "Bug fixes and improvements" in changelogs.
For information we use it in next Apache JMeter 3.0 and we usually like to know the details of a release.

I looked at Milestone 2.2.0 in issues , is it enough ?

Third, you changed naming of tags in 2.2.0, it's a bit annoying when comparing :-)

Regards
Philippe

@kallestenflo
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,
I agree this needs to be improved in future releases. I hope 3.0.0 will be a new milestone where things get a bit more formalized.

Appreciate the feedback!

Please sign in to comment.