From 54f5e555488bfb705f2755cbc0ee097f85c7b4e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 12:56:37 +0000 Subject: [PATCH 1/4] Bump org.springframework.boot from 3.3.0 to 3.3.1 Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 3.3.0 to 3.3.1. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.0...v3.3.1) --- updated-dependencies: - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 350193d..a50da15 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { id 'java-library' // Core frameworks - id 'org.springframework.boot' version '3.3.0' + id 'org.springframework.boot' version '3.3.1' id 'io.spring.dependency-management' version '1.1.5' // Publishing From 6cd9b51c2b909c365f41039d339222b1a094e3ad Mon Sep 17 00:00:00 2001 From: Roman Khlebnov Date: Mon, 24 Jun 2024 16:07:38 +0300 Subject: [PATCH 2/4] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a50da15..7bd4d65 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { id 'io.spring.dependency-management' version '1.1.5' // Publishing - id 'com.vanniktech.maven.publish' version '0.28.0' + id 'com.vanniktech.maven.publish' version '0.29.0' // Utility // id 'jacoco' From 02d701bcd1a7844963a6431e4a030bddcde784f2 Mon Sep 17 00:00:00 2001 From: Roman Khlebnov Date: Mon, 24 Jun 2024 16:08:13 +0300 Subject: [PATCH 3/4] Update README.md --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 9272dd4..ec4a6d9 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,21 @@ Opinionated version of multi-level caching for [Spring Boot](https://spring.io/p This version does not allow setting most of the local cache properties in favor of managing local cache expiry by itself. +## Usage +### Maven +```xml + + io.github.suppierk + spring-boot-multilevel-cache-starter + 3.3.1.0 + +``` + +### Gradle +```groovy +implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.3.1.0' +``` + ## Use cases ### Suitable for @@ -37,21 +52,6 @@ This version does not allow setting most of the local cache properties in favor 15-45m ``` -## Usage -### Maven -```xml - - io.github.suppierk - spring-boot-multilevel-cache-starter - 3.3.0.0 - -``` - -### Gradle -```groovy -implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.3.0.0' -``` - ## Default configuration ```yaml From 8b79f90cda8ee7803940480e978a231559c506f9 Mon Sep 17 00:00:00 2001 From: Roman Khlebnov Date: Mon, 24 Jun 2024 16:08:28 +0300 Subject: [PATCH 4/4] Update gradle.properties --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 9d33651..84b9559 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.3.0.0 +VERSION_NAME=3.3.1.0 POM_PACKAGING=jar POM_NAME=Spring Boot Multilevel Cache Starter