Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Apr 2, 2020
1 parent f569470 commit 27c89c5
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion 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
## 2.1.0 - 2020-04-02
### Added
* New API for reading JSON and JSON schema with a JsonParser as a source. Contributed by [@simon-greatrix](https://github.com/simon-greatrix)
* `JsonValidationService.readSchema(JsonParser)`
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2018-2019 the Justify authors.
Copyright 2018-2020 the Justify authors.
This software is licensed under the Apache License, Versions 2.0.

For testing purposes, this product includes 3rd-party products with separate
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ This software is available in the [Maven Central Repository] and the following d
<dependency>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
```

*Gradle*
```
implementation group: 'org.leadpony.justify', name: 'justify', version: '2.0.0'
implementation group: 'org.leadpony.justify', name: 'justify', version: '2.1.0'
```

Note that the addition of this dependency brings the following artifacts as transitive dependencies.
Expand Down Expand Up @@ -256,7 +256,7 @@ $ mvn clean install -P release
There exist several JSON validator implementations conformant to the JSON Schema Specification, including those for other programming languages. [The list of implementations] is available on the JSON Schema web site.

## Copyright Notice
Copyright &copy; 2018-2019 the Justify authors. This software is licensed under [Apache License, Versions 2.0][Apache 2.0 License].
Copyright &copy; 2018-2020 the Justify authors. This software is licensed under [Apache License, Versions 2.0][Apache 2.0 License].

[Apache 2.0 License]: https://www.apache.org/licenses/LICENSE-2.0
[Apache Johnzon]: https://johnzon.apache.org/
Expand Down
2 changes: 1 addition & 1 deletion justify-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify-parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
</parent>

<artifactId>justify-cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion justify-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify-parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
</parent>

<artifactId>justify-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion justify/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify-parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
</parent>

<artifactId>justify</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion 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-parent</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
<packaging>pom</packaging>
<name>org.leadpony.justify.parent</name>

Expand Down

0 comments on commit 27c89c5

Please sign in to comment.