Skip to content

Commit ef14f20

Browse files
committed
Prepare for 1.13
* jackson-databind to 2.11.0 * testng to 7.1.0 * changed to 1.13-SNAPSHOT * updated README.md to refer to 1.12 as latest release * updated travis CI links
1 parent c416799 commit ef14f20

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Its features are:
2626

2727
## Versions
2828

29-
The current version is **1.11**. See file `RELEASE-NOTES.md` for details of releases before 1.11.
29+
The current version is **1.12**. See file `RELEASE-NOTES.md` for details of releases before 1.11.
3030

3131
## Using it in your project
3232

@@ -154,7 +154,7 @@ final JsonNode patched = patch.apply(orig);
154154
[LGPLv3]: http://www.gnu.org/licenses/lgpl-3.0.html
155155
[ASL 2.0 badge]: https://img.shields.io/:license-Apache%202.0-blue.svg
156156
[ASL 2.0]: http://www.apache.org/licenses/LICENSE-2.0.html
157-
[Travis Badge]: https://api.travis-ci.org/java-json-tools/json-patch.svg?branch=master
158-
[Travis]: https://travis-ci.org/java-json-tools/json-patch
157+
[Travis Badge]: https://travis-ci.com/java-json-tools/json-patch.svg?branch=master
158+
[Travis]: https://travis-ci.com/java-json-tools/json-patch
159159
[Maven Central badge]: https://img.shields.io/maven-central/v/com.github.java-json-tools/json-patch.svg
160160
[Maven]: https://search.maven.org/artifact/com.github.java-json-tools/json-patch

Diff for: project.gradle

+6-6
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 = "1.12-SNAPSHOT";
24+
version = "1.13-SNAPSHOT";
2525
sourceCompatibility = JavaVersion.VERSION_1_7;
2626
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2727
project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java";
@@ -31,11 +31,11 @@ project.ext.description = "JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386)
3131
*/
3232
dependencies {
3333
provided(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
34-
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.9");
34+
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.11.0");
3535
compile(group: "com.github.java-json-tools", name: "msg-simple", version: "1.2");
3636

3737
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0-SNAPSHOT");
38-
testCompile(group: "org.testng", name: "testng", version: "6.8.7") {
38+
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {
3939
exclude(group: "junit", module: "junit");
4040
exclude(group: "org.beanshell", module: "bsh");
4141
exclude(group: "org.yaml", module: "snakeyaml");
@@ -54,9 +54,9 @@ javadoc.options {
5454
}
5555
links("https://docs.oracle.com/javase/7/docs/api/");
5656
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/");
57-
links("https://fasterxml.github.com/jackson-databind/javadoc/2.9/");
58-
links("https://fasterxml.github.com/jackson-core/javadoc/2.9/");
59-
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.9/");
57+
links("https://fasterxml.github.com/jackson-databind/javadoc/2.11/");
58+
links("https://fasterxml.github.com/jackson-core/javadoc/2.11/");
59+
links("https://fasterxml.github.com/jackson-annotations/javadoc/2.11/");
6060
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
6161
links("https://java-json-tools.github.io/msg-simple/");
6262
links("https://java-json-tools.github.io/jackson-coreutils/");

0 commit comments

Comments
 (0)