Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release xanthic v0.5.0 #209

Merged
merged 2 commits into from
Nov 25, 2023
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 @@ -63,7 +63,7 @@ repositories {
}

dependencies {
api(platform("io.github.xanthic.cache:cache-bom:0.4.2")) // Specify the latest version here
api(platform("io.github.xanthic.cache:cache-bom:0.5.0")) // 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 @@ -78,7 +78,7 @@ dependencies {
<groupId>io.github.xanthic.cache</groupId>
<artifactId>cache-bom</artifactId>
<!-- Specify the latest version here -->
<version>0.4.2</version>
<version>0.5.0</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.4.2"
version = "0.5.0"
}

subprojects {
Expand Down
Loading