diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ab58c6..bdace02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +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.28.4] - 2024-07-16 +## [0.29.0] - 2024-07-16 ### Changed -Added Spring Boot 3.3 support. +- Added Spring Boot 3.3 support. +- Removed support for spring boot 3.1 and 2.7. ## [0.28.3] - 2024-02-20 diff --git a/gradle.properties b/gradle.properties index d9cbcb9..187e7df 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.28.4 +version=0.29.0 diff --git a/tw-tkms-starter/build.gradle b/tw-tkms-starter/build.gradle index 4dada7d..82f5228 100644 --- a/tw-tkms-starter/build.gradle +++ b/tw-tkms-starter/build.gradle @@ -55,6 +55,7 @@ dependencies { testImplementation project(":tw-tkms-test-starter") testImplementation libraries.awaitility + // If we are running on spring boot 3.3 or newer then we need to use the flyway-postgresql dependency. if (!springBootVersion.startsWith("3.2")) { testImplementation libraries.flywayPostgresql }