File tree Expand file tree Collapse file tree 2 files changed +32
-4
lines changed Expand file tree Collapse file tree 2 files changed +32
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
31
### 1.2.5
2
32
3
33
* Fix issue #15 : URNs were incorrectly normalized
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ apply(plugin: "idea");
25
25
apply(plugin : " eclipse" );
26
26
27
27
group = " com.github.java-json-tools" ;
28
- version = " 1.2.11-SNAPSHOT " ;
28
+ version = " 1.2.11" ;
29
29
sourceCompatibility = " 1.6" ;
30
30
targetCompatibility = " 1.6" ; // defaults to sourceCompatibility
31
31
@@ -41,10 +41,8 @@ repositories {
41
41
*/
42
42
dependencies {
43
43
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
46
44
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 " );
48
46
compile(group : " com.github.fge" , name : " uri-template" , version : " 0.9" );
49
47
// FIXME: no javadoc
50
48
compile(group : " org.mozilla" , name : " rhino" , version : " 1.7.7.1" );
You can’t perform that action at this time.
0 commit comments