Skip to content

Commit

Permalink
Announce 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fge committed May 23, 2014
1 parent d9c25af commit 9f01ffc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions README.md
Expand Up @@ -4,8 +4,6 @@ This project, as of version 1.5, is licensed under both LGPLv3 and ASL 2.0. See
file LICENSE for more details. Versions 1.0 and lower are licensed under LGPLv3
only.

**Note the "L" in "LGPL". LGPL AND GPL ARE QUITE DIFFERENT!**

This project uses [Gradle](http://www.gradle.org) as a build system. See file `BUILD.md` for
details.

Expand All @@ -25,7 +23,7 @@ This package is meant to be used with Jackson 2.2.x. It provides the three follo

## Versions

The current verson is **1.7**. Its Javadoc is [available
The current verson is **1.8**. Its Javadoc is [available
online](http://fge.github.io/jackson-coreutils/index.html).

Please see file `RELEASE-NOTES.md` for more information.
Expand All @@ -36,7 +34,7 @@ With Gradle:

```groovy
dependencies {
compile(group: "com.github.fge", name: "jackson-coreutils", version: "1.7");
compile(group: "com.github.fge", name: "jackson-coreutils", version: "1.8");
}
```

Expand All @@ -46,7 +44,7 @@ With Maven:
<dependency>
<groupId>com.github.fge</groupId>
<artifactId>jackson-coreutils</artifactId>
<version>1.7</version>
<version>1.8</version>
</dependency>
```

Expand Down Expand Up @@ -78,7 +76,7 @@ This package provides a `JsonNodeReader` class which will fail with an exception
When reading JSON into a `JsonNode`, Jackson will serialize `1` as an `IntNode` but `1.0` as a
`DoubleNode` (or a `DecimalNode`).

Understandably so, Jackson <b>will not</b> consider such nodes to be equal, since they do not share
Understandably so, Jackson <b>will not</b> consider such nodes to be equal, since they are not of
the same class. But, understandably so as well, some uses of JSON out there, including [JSON
Schema](http://tools.ietf.org/html/draft-zyp-json-schema-04) and [JSON
Patch](http://tools.ietf.org/html/rfc6902)'s test operation, want to consider such nodes as equal.
Expand Down Expand Up @@ -176,7 +174,7 @@ There are several ways you can build one:
```java
// Build from an input string -- potentially throws JsonPointerException on malformed inputs
final JsonPointer ptr = new JsonPointer("/foo/bar");
// Build from a series of raw tokens
// Build from a series of raw tokens -- never throws an exception
final JsonPointer ptr = JsonPointer.of("foo", "bar", 1); // Yields pointer "/foo/bar/1"
// Get another pointer's parent:
final JsonPointer parent = ptr.parent();
Expand Down
2 changes: 1 addition & 1 deletion project.gradle
Expand Up @@ -21,7 +21,7 @@
* Project-specific settings. Unfortunately we cannot put the name in there!
*/
group = "com.github.fge";
version = "1.8";
version = "1.9-SNAPSHOT";
sourceCompatibility = "1.6";
targetCompatibility = "1.6"; // defaults to sourceCompatibility

Expand Down

0 comments on commit 9f01ffc

Please sign in to comment.