Skip to content

Commit 4575e2b

Browse files
committed
2.0
1 parent 5734ef6 commit 4575e2b

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,21 @@ This package is meant to be used with Jackson 2.2.x. It provides the three follo
2828

2929
## Versions
3030

31-
The current verson is **1.12**. Its Javadoc is [available
31+
* `jackson-coreutils` is **2.0**
32+
* `jackson-coreutils-equivalence` is not yet released.
33+
34+
Javadoc is [available
3235
online](https://java-json-tools.github.io/jackson-coreutils/index.html).
3336

34-
Please see file `RELEASE-NOTES.md` for more information.
37+
File `RELEASE-NOTES.md` has historical information.
3538

3639
## Using in Gradle/Maven
3740

3841
With Gradle:
3942

4043
```groovy
4144
dependencies {
42-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.10");
45+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
4346
}
4447
```
4548

@@ -49,7 +52,7 @@ With Maven:
4952
<dependency>
5053
<groupId>com.github.java-json-tools</groupId>
5154
<artifactId>jackson-coreutils</artifactId>
52-
<version>1.10</version>
55+
<version>2.0</version>
5356
</dependency>
5457
```
5558

@@ -102,6 +105,9 @@ will be considered equivalent to:
102105
[ 10e-1, 2.0, 0.3e1 ]
103106
```
104107

108+
As of v2.0, the Guava `Equivalence` is in the `jackson-coreutils-equivalence` subproject so that
109+
`jackson-coreutils` remains Guava-free.
110+
105111
### JSON Pointer
106112

107113
JSON Pointer is an IETF RFC (6901) which allows to unambiguously address any value into a JSON document

project.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Project-specific settings. Unfortunately we cannot put the name in there!
2222
*/
2323
group = "com.github.java-json-tools";
24-
version = "2.0-SNAPSHOT";
24+
version = "2.0";
2525
sourceCompatibility = JavaVersion.VERSION_1_7;
2626
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2727

0 commit comments

Comments
 (0)