diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f293e4..32bf1e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,8 @@ jobs: max-parallel: 100 matrix: spring_boot_version: + - 3.3.1 - 3.2.2 - - 3.1.2 - - 3.0.9 - - 2.7.14 container: image: azul/zulu-openjdk:17 env: diff --git a/CHANGELOG.md b/CHANGELOG.md index eb2bb37..03d9874 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.1.0] - 2024-07-22 + +### Changed +- Added support for Spring Boot 3.3. +- Dropped support for Spring Boot 2.7. + ## [0.0.3] - 2024-04-02 ### Changed diff --git a/build.libraries.gradle b/build.libraries.gradle index 7bf4d83..14f3ca8 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: "2.7.18"}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: "3.2.2"}" libraries = [ // version defined diff --git a/gradle.properties b/gradle.properties index 5c06d51..ce0c6a9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.0.3 \ No newline at end of file +version=0.1.0 \ No newline at end of file