Skip to content

Commit

Permalink
chore: release v4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenWickner committed Mar 30, 2020
1 parent d0e7d45 commit 6c34844
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 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.8.0] - 2020-03-30
### `jsonschema-generator`
#### Added
- Support for custom definitions in the scope of a particular field/method via `SchemaGeneratorConfigPart.withCustomDefinitionProvider()`
Expand Down Expand Up @@ -288,7 +288,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.7.0...HEAD
[4.8.0]: https://github.com/victools/jsonschema-generator/compare/v4.7.0...v4.8.0
[4.7.0]: https://github.com/victools/jsonschema-generator/compare/v4.6.0...v4.7.0
[4.6.0]: https://github.com/victools/jsonschema-generator/compare/v4.5.0...v4.6.0
[4.5.0]: https://github.com/victools/jsonschema-generator/compare/v4.4.0...v4.5.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ Another example for such a module is:
<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
</dependency>
```

Since version 4.7, the release versions of the main generator library and the (standard) `victools` modules listed above are aligned.
Since version `4.7`, the release versions of the main generator library and the (standard) `victools` modules listed above are aligned.
It is recommended to use identical versions for all of them to ensure compatibility.

### Code
Expand Down
2 changes: 1 addition & 1 deletion jsonschema-generator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Topics covered in this document are:
<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator</artifactId>
<version>4.7.0</version>
<version>4.8.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.8.0-SNAPSHOT</version>
<version>4.8.0</version>
</parent>
<artifactId>jsonschema-generator</artifactId>

Expand Down
4 changes: 2 additions & 2 deletions jsonschema-module-jackson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Schema attributes derived from validation annotations on getter methods are also
<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-module-jackson</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
</dependency>
```

Since version 4.7, the release versions of the main generator library and this module are aligned.
Since version `4.7`, the release versions of the main generator library and this module are aligned.
It is recommended to use identical versions for both dependencies to ensure compatibility.

### Code
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.8.0-SNAPSHOT</version>
<version>4.8.0</version>
</parent>
<artifactId>jsonschema-module-jackson</artifactId>

Expand Down
4 changes: 2 additions & 2 deletions jsonschema-module-javax-validation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Schema attributes derived from validation annotations on getter methods are also
<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-module-javax-validation</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
</dependency>
```

Since version 4.7, the release versions of the main generator library and this module are aligned.
Since version `4.7`, the release versions of the main generator library and this module are aligned.
It is recommended to use identical versions for both dependencies to ensure compatibility.

### Code
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.8.0-SNAPSHOT</version>
<version>4.8.0</version>
</parent>
<artifactId>jsonschema-module-javax-validation</artifactId>

Expand Down
4 changes: 2 additions & 2 deletions jsonschema-module-swagger-1.5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ Schema attributes derived from `@ApiModelProperty` on getter methods are also ap
<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-module-swagger-1.5</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
</dependency>
```

Since version 4.7, the release versions of the main generator library and this module are aligned.
Since version `4.7`, the release versions of the main generator library and this module are aligned.
It is recommended to use identical versions for both dependencies to ensure compatibility.

### Code
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.8.0-SNAPSHOT</version>
<version>4.8.0</version>
</parent>
<artifactId>jsonschema-module-swagger-1.5</artifactId>

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

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

<licenses>
Expand All @@ -26,7 +26,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.8.0</tag>
</scm>

<organization>
Expand Down

0 comments on commit 6c34844

Please sign in to comment.