Skip to content

Commit

Permalink
APPENG-1074: Update to run with Spring Boot 3.4 (#50)
Browse files Browse the repository at this point in the history
* APPENG-1074: Update to run with Spring Boot 3.4

* Remove 3.2.x matrix

* Revert default spring  boot version to 3.3.1
  • Loading branch information
normanma-tw authored Dec 6, 2024
1 parent 952769e commit f82166e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.4.0
- 3.3.1
- 3.2.2
container:
image: azul/zulu-openjdk:17
env:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.2] - 2024-12-04

### Changed
* Added support for Spring Boot 3.4.

## [2.0.1] - 2024-07-16

### Changed
Expand Down
2 changes: 1 addition & 1 deletion build.libraries.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}"
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}"

libraries = [
// version defined
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.0.1
version=2.0.2

0 comments on commit f82166e

Please sign in to comment.