diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e2a9f9..4065ecc 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 env: SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }} GRADLE_OPTS: "-Djava.security.egd=file:/dev/./urandom -Dorg.gradle.parallel=true" diff --git a/CHANGELOG.md b/CHANGELOG.md index a268228..e1bee8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [0.34.0] - 2024-12-04 + +### Changed +- Added Spring Boot 3.4 support. +- Removed Spring Boot 3.2 support. + ## [0.33.0] - 2024-10-28 ### Changed diff --git a/build.gradle b/build.gradle index 214518b..10170e4 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ import org.eclipse.jgit.api.errors.RefAlreadyExistsException buildscript { if (!project.hasProperty("springBootVersion")) { - ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.2.2" + ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.3.1" } dependencies { classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4' diff --git a/build.libraries.gradle b/build.libraries.gradle index 0e0d20f..97b4503 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,6 +1,6 @@ ext { protobufVersion = "3.24.0" - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.3.1'}" libraries = [ // version defined awaitility : 'org.awaitility:awaitility:4.2.0', diff --git a/gradle.properties b/gradle.properties index 47feb6e..36fdeae 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.33.0 +version=0.34.0