Skip to content

Commit 5d443f0

Browse files
committed
1.2.14
1 parent 8086d86 commit 5d443f0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ gratefully accepted.
3636

3737
## Versions
3838

39-
The current stable verson is **1.2.12**
39+
The current stable verson is **1.2.14**
4040
([ChangeLog](https://github.com/java-json-tools/json-schema-core/wiki/ChangeLog_12x),
4141
[Javadoc](http://java-json-tools.github.io/json-schema-core/1.2.x/index.html)).
4242

@@ -53,7 +53,7 @@ For gradle, use:
5353

5454
```
5555
dependencies {
56-
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.12");
56+
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.14");
5757
}
5858
```
5959

@@ -63,7 +63,7 @@ For maven:
6363
<dependency>
6464
<groupId>com.github.java-json-tools</groupId>
6565
<artifactId>json-schema-core</artifactId>
66-
<version>1.2.12</version>
66+
<version>1.2.14</version>
6767
</dependency>
6868
```
6969

@@ -82,5 +82,5 @@ The versioning scheme is defined by the **middle digit** of the version number:
8282
[LGPLv3]: http://www.gnu.org/licenses/lgpl-3.0.html
8383
[ASL 2.0 badge]: https://img.shields.io/:license-Apache%202.0-blue.svg
8484
[ASL 2.0]: http://www.apache.org/licenses/LICENSE-2.0.html
85-
[Travis Badge]: https://api.travis-ci.org/java-json-tools/json-schema-core.svg?branch=master
86-
[Travis]: https://travis-ci.org/java-json-tools/json-schema-core
85+
[Travis Badge]: https://travis-ci.com/java-json-tools/json-schema-core.svg?branch=master
86+
[Travis]: https://travis-ci.com/java-json-tools/json-schema-core

project.gradle

+3-3
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.2.14-SNAPSHOT";
24+
version = "1.2.14";
2525
sourceCompatibility = JavaVersion.VERSION_1_7;
2626
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2727

@@ -35,8 +35,8 @@ project.ext {
3535
dependencies {
3636
compile(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.11.0");
3737
compile(group: "com.google.guava", name: "guava", version: "28.2-android");
38-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0-SNAPSHOT");
39-
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0-SNAPSHOT");
38+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils", version: "2.0");
39+
compile(group: "com.github.java-json-tools", name: "jackson-coreutils-equivalence", version: "1.0");
4040
compile(group: "com.github.java-json-tools", name: "uri-template", version: "0.10");
4141
// FIXME: no javadoc
4242
// FIXME: update beyond 1.7.7.x once we're Java 8 or better.

0 commit comments

Comments
 (0)