Skip to content

Commit 582da53

Browse files
committed
1.2.11
1 parent 503b633 commit 582da53

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed

RELEASE-NOTES.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
### 1.2.11
2+
3+
* Depend on jackson-coreutils 1.10.
4+
* Update dependencies on jsr305.
5+
* Make explicit the Guava and Jackson Databind dependencies.
6+
* Fix javadoc generation
7+
* Fix issue #55: `SchemaTree.setPointer` with missing path yields a tree with a null node.
8+
* Delay load error bundle messages until there is an error.
9+
* Fix issue #57: `Iterators.<T>emptyIterator()` removed from Guava.
10+
11+
### 1.2.10
12+
13+
* Fix issue #41: Remove Objects.toStringHelper to allow users of later versions of Guava to continue to operate.
14+
15+
### 1.2.9
16+
17+
TODO
18+
19+
### 1.2.8
20+
21+
TODO
22+
23+
### 1.2.7
24+
25+
TODO
26+
27+
### 1.2.6
28+
29+
TODO
30+
131
### 1.2.5
232

333
* Fix issue #15: URNs were incorrectly normalized

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apply(plugin: "idea");
2525
apply(plugin: "eclipse");
2626

2727
group = "com.github.java-json-tools";
28-
version = "1.2.11-SNAPSHOT";
28+
version = "1.2.11";
2929
sourceCompatibility = "1.6";
3030
targetCompatibility = "1.6"; // defaults to sourceCompatibility
3131

@@ -41,10 +41,8 @@ repositories {
4141
*/
4242
dependencies {
4343
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.9");
44-
// FIXME: Update to 28.1-jre (or later) once uri-template is fixed.
45-
// https://github.com/java-json-tools/json-schema-core/issues/59
4644
compile(group: "com.google.guava", name: "guava", version: "25.1-jre");
47-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.9");
45+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "1.10");
4846
compile(group: "com.github.fge", name: "uri-template", version: "0.9");
4947
// FIXME: no javadoc
5048
compile(group: "org.mozilla", name: "rhino", version: "1.7.7.1");

0 commit comments

Comments
 (0)