Skip to content

Commit

Permalink
chore: release v4.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenWickner committed Jan 10, 2022
1 parent 4cda027 commit 1b969da
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 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]
## [4.22.0] - 2022-01-10
### `jsonschema-generator`
#### Added
- Introduce support for `SchemaVersion.DRAFT_2020_12`
Expand Down Expand Up @@ -535,7 +535,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Indicate a number's "exclusiveMaximum" according to `@DecimalMax` or `@Negative`


[Unreleased]: https://github.com/victools/jsonschema-generator/compare/v4.21.0...HEAD
[4.22.0]: https://github.com/victools/jsonschema-generator/compare/v4.21.0...v4.22.0
[4.21.0]: https://github.com/victools/jsonschema-generator/compare/v4.20.0...v4.21.0
[4.20.0]: https://github.com/victools/jsonschema-generator/compare/v4.19.0...v4.20.0
[4.19.0]: https://github.com/victools/jsonschema-generator/compare/v4.18.0...v4.19.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://github.com/victools/jsonschema-generator/workflows/Java%20CI%20(Maven)/badge.svg)](https://github.com/victools/jsonschema-generator/actions?query=workflow%3A%22Java+CI+%28Maven%29%22)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.victools/jsonschema-generator/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.victools/jsonschema-generator)

Creating JSON Schema (Draft 6, Draft 7 or Draft 2019-09) from your Java classes utilising Jackson.
Creating JSON Schema (Draft 6, Draft 7, Draft 2019-09 or Draft 2020-12) from your Java classes utilising Jackson.

----

Expand Down Expand Up @@ -35,7 +35,7 @@ Additional documentation and configuration examples can be found here: https://v
<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator</artifactId>
<version>4.21.0</version>
<version>4.22.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion jsonschema-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-generator</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jsonschema-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion jsonschema-module-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-module-jackson</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jsonschema-module-jakarta-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-module-jakarta-validation</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jsonschema-module-javax-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-module-javax-validation</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jsonschema-module-swagger-1.5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-module-swagger-1.5</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jsonschema-module-swagger-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
</parent>
<artifactId>jsonschema-module-swagger-2</artifactId>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator-parent</artifactId>
<version>4.22.0-SNAPSHOT</version>
<version>4.22.0</version>
<packaging>pom</packaging>

<licenses>
Expand All @@ -28,7 +28,7 @@
<connection>scm:git:https://github.com/victools/jsonschema-generator.git</connection>
<developerConnection>scm:git:https://github.com/victools/jsonschema-generator.git</developerConnection>
<url>https://github.com/victools/jsonschema-generator</url>
<tag>HEAD</tag>
<tag>v4.22.0</tag>
</scm>

<organization>
Expand Down

0 comments on commit 1b969da

Please sign in to comment.