Skip to content

Commit 9e1e8e6

Browse files
Version 0.6.2
1 parent 0954111 commit 9e1e8e6

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [0.6.2] - 2024-09-02
11+
12+
### Changed
13+
- Updated spring boot version to `3.3.3`
14+
1015
## [0.6.1] - 2024-08-01
1116

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

95-
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1...HEAD
100+
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2...HEAD
101+
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2
96102
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1
97103
[0.6.0]: https://github.com/apiaddicts/apigen/releases/tag/0.6.0
98104
[0.5.0]: https://github.com/apiaddicts/apigen/releases/tag/0.5.0

MIGRATION_GUIDE.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## From [0.6.1] to [0.6.2]
6+
7+
No migration required
8+
59
## From [0.6.0] to [0.6.1]
610

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

67-
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1...HEAD
71+
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2...HEAD
72+
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2
6873
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1
6974
[0.6.0]: https://github.com/apiaddicts/apigen/releases/tag/0.6.0
7075
[0.5.0]: https://github.com/apiaddicts/apigen/releases/tag/0.5.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# 🛠️ 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)
2+
# 🛠️ 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)
33

44
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.
55

@@ -42,7 +42,7 @@ Feel free to drop by and greet us on our GitHub discussion or Discord chat. You
4242
version: "3.3"
4343
services:
4444
apigen:
45-
image: "apiaddicts/apitools-apigen:0.6.1"
45+
image: "apiaddicts/apitools-apigen:0.6.2"
4646
ports:
4747
- "8080:8080"
4848
```

archetype-parent-spring-boot/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.3.2</version>
9+
<version>3.3.3</version>
1010
<relativePath/>
1111
</parent>
1212

@@ -38,7 +38,7 @@
3838

3939
<properties>
4040

41-
<revision>0.6.1</revision>
41+
<revision>0.6.2</revision>
4242

4343
<java.version>17</java.version>
4444
<maven.compiler.source>17</maven.compiler.source>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.3.2</version>
9+
<version>3.3.3</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

@@ -39,7 +39,7 @@
3939

4040
<properties>
4141

42-
<revision>0.6.1</revision>
42+
<revision>0.6.2</revision>
4343

4444
<java.version>17</java.version>
4545
<maven.compiler.source>17</maven.compiler.source>

0 commit comments

Comments
 (0)