Skip to content

Commit 09b62c4

Browse files
Version 1.0.1
1 parent ea36673 commit 09b62c4

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+
## [1.0.1] - 2024-11-11
11+
12+
### Changed
13+
- Updated spring boot version to `3.3.5`
14+
1015
## [1.0.0] - 2024-10-15
1116

1217
### Changed
@@ -103,7 +108,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
103108
### Added
104109
- Initial functional version of Apigen
105110

106-
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.0.0...HEAD
111+
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.0.1...HEAD
112+
[1.0.1]: https://github.com/apiaddicts/apigen/releases/tag/1.0.1
107113
[1.0.0]: https://github.com/apiaddicts/apigen/releases/tag/1.0.0
108114
[0.6.2]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2
109115
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1

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 [1.0.0] to [1.0.1]
6+
7+
No migration required
8+
59
## From [0.6.2] to [1.0.0]
610

711
Update to Java 21
@@ -72,7 +76,8 @@ In this version Apigen has been updated to be auto documented with `spring-doc`
7276
- Perform the Spring Boot migration from `2.4.x` to `2.6.x`
7377
- Remove the property `apigen.documentation.enabled`, now the documentation is managed by the `spring-doc` official properties
7478

75-
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.0.0...HEAD
79+
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.0.1...HEAD
80+
[1.0.1]: https://github.com/apiaddicts/apigen/releases/tag/1.0.1
7681
[1.0.0]: https://github.com/apiaddicts/apigen/releases/tag/1.0.0
7782
[0.6.2]: https://github.com/apiaddicts/apigen/releases/tag/0.6.2
7883
[0.6.1]: https://github.com/apiaddicts/apigen/releases/tag/0.6.1

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-1.0.0-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-1.0.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)
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:1.0.0"
45+
image: "apiaddicts/apitools-apigen:1.0.1"
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.4</version>
9+
<version>3.3.5</version>
1010
<relativePath/>
1111
</parent>
1212

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

3939
<properties>
4040

41-
<revision>1.0.0</revision>
41+
<revision>1.0.1</revision>
4242

4343
<java.version>21</java.version>
4444
<maven.compiler.source>21</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.4</version>
9+
<version>3.3.5</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

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

4040
<properties>
4141

42-
<revision>1.0.0</revision>
42+
<revision>1.0.1</revision>
4343

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

0 commit comments

Comments
 (0)