Skip to content

Commit

Permalink
Version 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-palanques-cloudappi committed Sep 2, 2024
1 parent 0954111 commit 9e1e8e6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.6.2] - 2024-09-02

### Changed
- Updated spring boot version to `3.3.3`

## [0.6.1] - 2024-08-01

### Changed
Expand Down Expand Up @@ -92,7 +97,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial functional version of Apigen

[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1...HEAD
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2...HEAD
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1
[0.6.0]: https://github.com/apiaddicts/apigen/releases/tag/0.6.0
[0.5.0]: https://github.com/apiaddicts/apigen/releases/tag/0.5.0
Expand Down
7 changes: 6 additions & 1 deletion MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All changes required to migrate generated Apigen projects to new versions will be documented in this file.

## From [0.6.1] to [0.6.2]

No migration required

## From [0.6.0] to [0.6.1]

No migration required
Expand Down Expand Up @@ -64,7 +68,8 @@ In this version Apigen has been updated to be auto documented with `spring-doc`
- Perform the Spring Boot migration from `2.4.x` to `2.6.x`
- Remove the property `apigen.documentation.enabled`, now the documentation is managed by the `spring-doc` official properties

[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1...HEAD
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2...HEAD
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1
[0.6.0]: https://github.com/apiaddicts/apigen/releases/tag/0.6.0
[0.5.0]: https://github.com/apiaddicts/apigen/releases/tag/0.5.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# 🛠️ Apigen ![Release](https://img.shields.io/badge/release-0.6.1-purple) ![Swagger](https://img.shields.io/badge/-openapi-%23Clojure?style=flat&logo=swagger&logoColor=white) ![Java](https://img.shields.io/badge/java-%23ED8B00.svg?style=flat&logo=openjdk&logoColor=white) ![Spring](https://img.shields.io/badge/spring-%236DB33F.svg?style=flat&logo=spring&logoColor=white) [![License: LGPL v3](https://img.shields.io/badge/license-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
# 🛠️ Apigen ![Release](https://img.shields.io/badge/release-0.6.2-purple) ![Swagger](https://img.shields.io/badge/-openapi-%23Clojure?style=flat&logo=swagger&logoColor=white) ![Java](https://img.shields.io/badge/java-%23ED8B00.svg?style=flat&logo=openjdk&logoColor=white) ![Spring](https://img.shields.io/badge/spring-%236DB33F.svg?style=flat&logo=spring&logoColor=white) [![License: LGPL v3](https://img.shields.io/badge/license-LGPL_v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)

Welcome to **apigen.springboot**, made in spain ![Spain](https://raw.githubusercontent.com/stevenrskelton/flag-icon/master/png/16/country-4x3/es.png "Spain"), the opensource project in Java that allows you to generate an archetype of the springboot framework using the openapi file as a mapping tool between the openapi definition and the database. Click maven to see available mvnrepository dependencies.

Expand Down Expand Up @@ -42,7 +42,7 @@ Feel free to drop by and greet us on our GitHub discussion or Discord chat. You
version: "3.3"
services:
apigen:
image: "apiaddicts/apitools-apigen:0.6.1"
image: "apiaddicts/apitools-apigen:0.6.2"
ports:
- "8080:8080"
```
Expand Down
4 changes: 2 additions & 2 deletions archetype-parent-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.2</version>
<version>3.3.3</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -38,7 +38,7 @@

<properties>

<revision>0.6.1</revision>
<revision>0.6.2</revision>

<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.2</version>
<version>3.3.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -39,7 +39,7 @@

<properties>

<revision>0.6.1</revision>
<revision>0.6.2</revision>

<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
Expand Down

0 comments on commit 9e1e8e6

Please sign in to comment.