From 9012cfc3466f65ca2e5238d2cb97cbaa450db93b Mon Sep 17 00:00:00 2001 From: Peeter Karolin Date: Thu, 18 Jul 2024 10:04:01 +0300 Subject: [PATCH] APPENG-849: Add support for Spring Boot 3.3 --- .github/workflows/build.yml | 5 ++--- CHANGELOG.md | 6 ++++++ build.libraries.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52ef091..44158bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,9 +18,8 @@ jobs: max-parallel: 100 matrix: spring_boot_version: - - 3.2.2 - - 3.1.2 - - 3.0.7 + - 3.3.1 + - 3.2.7 env: SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6326f5a..10b677f 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). +## [3.1.0] - 2024-07-18 + +### Changed +* Run tests against Spring Boot 3.3. +* Baseline moved to Spring Boot 3.2. Library is now built and published against Spring Boot 3.2. + ## [3.0.3] - 2024-04-05 ### Changed diff --git a/build.libraries.gradle b/build.libraries.gradle index cf11985..d1582ac 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.0.7" + springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.2.7" libraries = [ // explicit versions diff --git a/gradle.properties b/gradle.properties index 84d5af9..5b2a680 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=3.0.3 +version=3.1.0