From dc72e641ee153bdb58b77810a468ce361bd3502a Mon Sep 17 00:00:00 2001 From: Nerius Ilmonas <40357312+Neriuzz@users.noreply.github.com> Date: Tue, 1 Aug 2023 11:53:13 +0100 Subject: [PATCH] [APPENG-582] Add support for Spring Boot 3.1.2 (#24) --- .github/workflows/build.yml | 3 ++- CHANGELOG.md | 10 ++++++++++ build.libraries.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ced2189..8645917 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,8 @@ jobs: max-parallel: 100 matrix: spring_boot_version: - - 3.0.6 + - 3.1.2 + - 3.0.7 env: SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f1f44e..c93cba6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.0.1] - 2023-08-01 + +### Added + +* Support for Spring Boot 3.1 + +### Bumped + +* Build against Spring Boot 3.0.6 --> 3.0.7 + ## [3.0.0] - 2023-05-06 ### Changed diff --git a/build.libraries.gradle b/build.libraries.gradle index 3b0d31c..a06a3c6 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.0.6" + springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.0.7" libraries = [ // explicit versions diff --git a/gradle.properties b/gradle.properties index 4950f0d..bad42ed 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=3.0.0 +version=3.0.1