Skip to content

Commit

Permalink
upgrade to 1.0.70 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed May 23, 2022
1 parent ba17f1d commit 22240ea
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## 1.0.70 - 2022-05-23

### Added

- fixes #558 Add French translation for validation messages. Thanks @sebastienrospars

### Changed

- fixes #535 part 2 fix the same issue in AnyOfValidator. Thanks @AndreasALoew
- fixes #570 Upgrade javadoc plugin. Thanks @poorguy-tech
- fixes #569 Fix broken tests on non-english setup. Thanks @dreis2211
- fixes #566 Remove unused variable in JsonNodeUtil. Thanks @dreis2211
- fixes #565 Improve performance of URLFactory.create. Thanks @dreis2211
- fixes #561 Prevent from throwing an exception when setting default values. Thanks @josejulio

## 1.0.69 - 2022-04-18

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -82,15 +82,15 @@ Maven:
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.69</version>
<version>1.0.70</version>
</dependency>
```

Gradle:

```
dependencies {
compile(group: "com.networknt", name: "json-schema-validator", version: "1.0.69");
compile(group: "com.networknt", name: "json-schema-validator", version: "1.0.70");
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.70-SNAPSHOT</version>
<version>1.0.70</version>
<packaging>bundle</packaging>
<description>A json schema validator that supports draft v4, v6, v7 and v2019-09</description>
<url>https://github.com/networknt/json-schema-validator</url>
Expand Down

0 comments on commit 22240ea

Please sign in to comment.