Skip to content

Commit a1a7d23

Browse files
authored
APPENG-1074: Support for Spring Boot 3.4 (#6)
* APPENG-1074: Support for Spring Boot 3.4 * Bump to SB3.3.6 for compatibility matrix
1 parent ed904d5 commit a1a7d23

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
max-parallel: 100
1919
matrix:
2020
spring_boot_version:
21-
- 3.3.1
22-
- 3.2.2
21+
- 3.4.0
22+
- 3.3.6
2323
container:
2424
image: azul/zulu-openjdk:17
2525
env:

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.1] - 2024-12-09
9+
10+
### Changed
11+
- Added support for Spring Boot 3.4.
12+
- Dropped support for Spring Boot 3.2.
13+
814
## [0.1.0] - 2024-07-22
915

1016
### Changed

build.libraries.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: "3.2.2"}"
2+
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: "3.3.6"}"
33

44
libraries = [
55
// version defined

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.1.0
1+
version=0.1.1

0 commit comments

Comments
 (0)