diff --git a/build.gradle b/build.gradle index 2d39b5c3..08fe9695 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ ext { test: ['org.slf4j:slf4j-simple:1.7.7', 'org.assertj:assertj-core:1.6.1', 'commons-io:commons-io:2.4', 'org.hamcrest:hamcrest-core:1.3', 'org.hamcrest:hamcrest-library:1.3', 'junit:junit:4.10'] ] - snapshotVersion = true + snapshotVersion = false } allprojects { diff --git a/changelog.md b/changelog.md index e55688bd..bbf3ceb0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ In The Pipe =========== + +1.2.0 (2014-11-11) +================== * Added EvaluationListener interface that allows abortion of evaluation if criteria is fulfilled. this makes it possible to limit the number of results to fetch when a document is scanned. Also added utility method to limit results `JsonPath.parse(json).limit(1).read("$..title", List.class);` @@ -19,7 +22,7 @@ In The Pipe * Negate exist checks in inline filters (not defined or null) `parse(JSON_DOCUMENT).read("$.store.book[?(!@.isbn)]")` * Improved object mapping with Jackson and Gson (now handles generic types) -* JacksonTreeJsonProvider supporting path operations on `com.fasterxml.jackson.databind.JsonNode` +* JacksonJsonNodeJsonProvider supporting path operations on `com.fasterxml.jackson.databind.JsonNode` * Exceptions thrown by JsonPath.compile are now wrapped in an InvalidPathException * Fixed Deep scanning issue (#60)