Skip to content

Commit ec3c19f

Browse files
committed
2.2.11
1 parent 522f80f commit ec3c19f

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

RELEASE-NOTES.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
### 2.2.11
2+
3+
* Depend on -core 1.2.10.
4+
* Update dependencies on jsr305.
5+
* Fix javadoc generation.
6+
* Fix issue #293: Lazily instantiate defaults for `JsonSchemaFactoryBuilder`.
7+
8+
### 2.2.10
9+
10+
* Revert strict date-time validation from 2.2.9; now such validation is opt-in.
11+
12+
### 2.2.9
13+
14+
* Use stricter date-time attribute formatter.
15+
* Added a cache size for # of records in ValidationConfiguration.
16+
17+
### 2.2.8
18+
19+
* TODO
20+
21+
### 2.2.7
22+
23+
* First time publishing under com.github.java-json-tools.
24+
* TODO
25+
126
### 2.2.6
227

328
* Fix issue #112: fix circular validation detection; use a "validation stack" to

build.gradle

+2-2
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 = "2.2.10-SNAPSHOT";
28+
version = "2.2.11";
2929
sourceCompatibility = "1.6";
3030
targetCompatibility = "1.6"; // defaults to sourceCompatibility
3131

@@ -40,7 +40,7 @@ repositories {
4040
* List of dependencies
4141
*/
4242
dependencies {
43-
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.9");
43+
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.10");
4444
compile(group: "com.sun.mail", name: "mailapi", version: "1.6.1");
4545
compile(group: "joda-time", name: "joda-time", version: "2.9.7");
4646
compile(group: "com.googlecode.libphonenumber", name: "libphonenumber", version: "8.0.0");

0 commit comments

Comments
 (0)