From f82166e70ffacfa44a864bcc97acbe464f55d122 Mon Sep 17 00:00:00 2001 From: Norman Ma <112887428+normanma-tw@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:52:35 +0000 Subject: [PATCH] APPENG-1074: Update to run with Spring Boot 3.4 (#50) * APPENG-1074: Update to run with Spring Boot 3.4 * Remove 3.2.x matrix * Revert default spring boot version to 3.3.1 --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 5 +++++ build.libraries.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39f07a7..197137d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index d59f11d..628167c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/build.libraries.gradle b/build.libraries.gradle index d710663..fb997a7 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -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 diff --git a/gradle.properties b/gradle.properties index 332be40..547d085 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=2.0.1 +version=2.0.2