Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ repositories {
}

dependencies {
api(platform("io.github.xanthic.cache:cache-bom:0.7.0")) // Specify the latest version here
api(platform("io.github.xanthic.cache:cache-bom:0.7.1")) // Specify the latest version here
api(group = "io.github.xanthic.cache", name = "cache-core") // For library devs
implementation(group = "io.github.xanthic.cache", name = "cache-provider-caffeine") // For application devs; can select any provider
}
Expand All @@ -80,7 +80,7 @@ dependencies {
<groupId>io.github.xanthic.cache</groupId>
<artifactId>cache-bom</artifactId>
<!-- Specify the latest version here -->
<version>0.7.0</version>
<version>0.7.1</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ allprojects {
}

group = "io.github.xanthic.cache"
version = "0.7.0"
version = "0.7.1"
}

subprojects {
Expand Down
Loading