Skip to content

Commit 47bdbc2

Browse files
Version 1.1.2
1 parent 95b6fbf commit 47bdbc2

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

CHANGELOG.md

+7-1
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.1.2] - 2025-03-24
11+
12+
### Changed
13+
- Updated spring boot version to `3.4.4`
14+
1015
## [1.1.1] - 2025-01-17
1116

1217
### Changed
@@ -118,7 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
118123
### Added
119124
- Initial functional version of Apigen
120125

121-
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.1.1...HEAD
126+
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.1.2...HEAD
127+
[1.1.2]: https://github.com/apiaddicts/apigen/releases/tag/1.1.2
122128
[1.1.1]: https://github.com/apiaddicts/apigen/releases/tag/1.1.1
123129
[1.1.0]: https://github.com/apiaddicts/apigen/releases/tag/1.1.0
124130
[1.0.1]: https://github.com/apiaddicts/apigen/releases/tag/1.0.1

MIGRATION_GUIDE.md

+7-2
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.1.1] to [1.1.2]
6+
7+
No migration required
8+
59
## From [1.1.0] to [1.1.1]
610

711
No migration required
@@ -98,8 +102,9 @@ In this version Apigen has been updated to be auto documented with `spring-doc`
98102
- Perform the Spring Boot migration from `2.4.x` to `2.6.x`
99103
- Remove the property `apigen.documentation.enabled`, now the documentation is managed by the `spring-doc` official properties
100104

101-
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.1.1...HEAD
102-
[1.1.1]: https://github.com/apiaddicts/apigen/releases/tag/1.1.0
105+
[unreleased]: https://github.com/apiaddicts/apigen/releases/tag/1.1.2...HEAD
106+
[1.1.2]: https://github.com/apiaddicts/apigen/releases/tag/1.1.2
107+
[1.1.1]: https://github.com/apiaddicts/apigen/releases/tag/1.1.1
103108
[1.1.0]: https://github.com/apiaddicts/apigen/releases/tag/1.1.0
104109
[1.0.1]: https://github.com/apiaddicts/apigen/releases/tag/1.0.1
105110
[1.0.0]: https://github.com/apiaddicts/apigen/releases/tag/1.0.0

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# 🛠️ Apigen ![Release](https://img.shields.io/badge/release-1.1.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-1.1.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:1.1.1"
45+
image: "apiaddicts/apitools-apigen:1.1.2"
4646
ports:
4747
- "8080:8080"
4848
```

archetype-parent-spring-boot/pom.xml

+2-2
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.4.1</version>
9+
<version>3.4.4</version>
1010
<relativePath/>
1111
</parent>
1212

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

3939
<properties>
4040

41-
<revision>1.1.1</revision>
41+
<revision>1.1.2</revision>
4242

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

pom.xml

+2-2
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.4.1</version>
9+
<version>3.4.4</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

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

4040
<properties>
4141

42-
<revision>1.1.1</revision>
42+
<revision>1.1.2</revision>
4343

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

0 commit comments

Comments
 (0)