Skip to content

Commit

Permalink
Bump the version to 0.14.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Mar 16, 2019
1 parent 1d5614c commit 292245a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.14.0 - 2019-03-18
### Added
- `getPointer()` method in `Problem` interface which provides the location of the problem in the JSON instance as a JSON pointer.
- `ProblemPrinterBuilder` interface to build configured problem printers, such as printers with problem locations omitted.
Expand All @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The evaluation of false boolean schema for `properties`, `patternProperties`, and `additionalProperties` keywords is now deferred until the value of the property.

### Fixed
- Fix broken Javadoc links to the JDK.
- Fix broken Javadoc links to the JDK.

## 0.13.0 - 2019-02-27
### Added
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ Justify is a JSON validator based on [JSON Schema Specification] and [Java API f
* Reinforces [Java API for JSON Processing (JSR 374)] transparently with the validation functionality.
* Can be used with [Java API for JSON Binding (JSR 367)] via a custom JsonProvider.
* Reports problems with the source locations including line and column numbers.
* Passes 1,000+ test cases including official ones provided by [JSON Schema Test Suite].
* Passes all test cases provided by [JSON Schema Test Suite] including both mandatory and optional tests.
* Validates the input in streaming way, which claims small memory footprint even when the input is a large JSON.
* Accepts custom formats for string and other instance types.
* Supports Java 8, 9, 10 and 11, can be used as a modular jar in Java 9 and higher.
* Supports Java 8, 9, 10 and 11.
* Can be used as a modular jar in Java 9 and higher.
* Internationalized problem messages, including Japanese language support.

## Getting Started
Expand All @@ -30,7 +32,7 @@ the following two dependencies are all you need to add to your pom.xml.
<dependency>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>0.13.0</version>
<version>0.14.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion justify-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.leadpony.justify</groupId>
<artifactId>justify-cli</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<packaging>jar</packaging>
<name>org.leadpony.justify.cli</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion justify/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<packaging>jar</packaging>
<name>org.leadpony.justify</name>
<description>
Expand Down

0 comments on commit 292245a

Please sign in to comment.