From daaf52ed1d2b480cc7766eac900f1e21333f9ae4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jun 2024 08:22:07 +0300 Subject: [PATCH] Bump org.springframework.boot from 3.2.5 to 3.3.0 (#27) * Bump org.springframework.boot from 3.2.5 to 3.3.0 Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 3.2.5 to 3.3.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.2.5...v3.3.0) --- updated-dependencies: - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Update build.gradle * Update gradle.properties * Delete CHANGELOG.md * Update README.md * Update build.gradle --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Khlebnov --- CHANGELOG.md | 26 -------------------------- README.md | 4 ++-- build.gradle | 18 +++++++----------- gradle.properties | 2 +- 4 files changed, 10 insertions(+), 40 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index a64339c..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,26 +0,0 @@ -# Changelog - -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.2.5.0] - -### Changed -- Updated an overall project to the most recent Spring version -- Changed versioning scheme to reflect the Spring version being used - -## [1.0.1] - -### Fixed -- Possible infinite loop during eviction of entities - -## [1.0.0] - -### Added -- Initial implementation - -[1.0.1]: https://github.com/SuppieRK/spring-boot-multilevel-cache-starter/compare/v1.0.1...v3.2.5.0 -[1.0.1]: https://github.com/SuppieRK/spring-boot-multilevel-cache-starter/compare/v1.0.0...v1.0.1 -[1.0.0]: https://github.com/SuppieRK/spring-boot-multilevel-cache-starter/compare/6a187283...v1.0.0 \ No newline at end of file diff --git a/README.md b/README.md index c61ede8..3ad1839 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,13 @@ This version does not allow setting most of the local cache properties in favor io.github.suppierk spring-boot-multilevel-cache-starter - 3.2.5.2 + 3.3.0.0 ``` ### Gradle ```groovy -implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.2.5.2' +implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.3.0.0' ``` ## Default configuration diff --git a/build.gradle b/build.gradle index 5c593a9..350193d 100644 --- a/build.gradle +++ b/build.gradle @@ -9,8 +9,8 @@ plugins { id 'java-library' // Core frameworks - id 'org.springframework.boot' version '3.2.5' - id 'io.spring.dependency-management' version '1.1.4' + id 'org.springframework.boot' version '3.3.0' + id 'io.spring.dependency-management' version '1.1.5' // Publishing id 'com.vanniktech.maven.publish' version '0.28.0' @@ -42,8 +42,10 @@ configurations { } } -ext { - set('springCloudVersion', "2023.0.1") +dependencyManagement { + imports { + mavenBom "org.springframework.cloud:spring-cloud-dependencies:2023.0.2" + } } dependencies { @@ -71,12 +73,6 @@ dependencies { testImplementation 'org.testcontainers:junit-jupiter' } -dependencyManagement { - imports { - mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" - } -} - test { useJUnitPlatform() } @@ -133,4 +129,4 @@ tasks.withType(Copy).configureEach { tasks.withType(JavaCompile).configureEach { options.encoding = StandardCharsets.UTF_8.name() dependsOn(spotlessJavaCheck) -} \ No newline at end of file +} diff --git a/gradle.properties b/gradle.properties index e57979f..9d33651 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,7 +27,7 @@ SONATYPE_AUTOMATIC_RELEASE=true GROUP=io.github.suppierk POM_ARTIFACT_ID=spring-boot-multilevel-cache-starter -VERSION_NAME=3.2.5.2 +VERSION_NAME=3.3.0.0 POM_PACKAGING=jar POM_NAME=Spring Boot Multilevel Cache Starter