Skip to content

Commit

Permalink
Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Jan 18, 2025
1 parent 93d845e commit 439c561
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ Powering infrastructure near you:
Download from [Maven Central][maven] or depend via Gradle:

```gradle
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")
implementation("com.github.ben-manes.caffeine:caffeine:3.2.0")
// Optional extensions
implementation("com.github.ben-manes.caffeine:guava:3.1.8")
implementation("com.github.ben-manes.caffeine:jcache:3.1.8")
implementation("com.github.ben-manes.caffeine:guava:3.2.0")
implementation("com.github.ben-manes.caffeine:jcache:3.2.0")
```

For Java 11 or above, use `3.x` otherwise use `2.x`.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ allprojects {
version(
major = 3, // incompatible API changes
minor = 2, // backwards-compatible additions
patch = 0, // backwards-compatible bug fixes
patch = 1, // backwards-compatible bug fixes
releaseBuild = rootProject.hasProperty("release"))
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
caffeine = "3.1.8"
caffeine = "3.2.0"
junit = "5.11.4"
reactor = "3.7.2"
truth = "1.4.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/graal-native/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
caffeine = "3.1.8"
caffeine = "3.2.0"
graal = "0.10.4"
junit = "5.11.4"
truth = "1.4.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/hibernate/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
caffeine = "3.1.8"
caffeine = "3.2.0"
h2 = "2.3.232"
hibernate = "7.0.0.Beta3"
junit = "5.11.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/indexable/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
caffeine = "3.1.8"
caffeine = "3.2.0"
guava = "33.4.0-jre"
junit-jupiter = "5.11.4"
truth = "1.4.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/resilience-failsafe/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
caffeine = "3.1.8"
caffeine = "3.2.0"
failsafe = "3.3.2"
junit = "5.11.4"
truth = "1.4.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/write-behind-rxjava/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
awaitility = "4.2.2"
caffeine = "3.1.8"
caffeine = "3.2.0"
junit = "5.11.4"
rxjava = "3.1.10"
versions = "0.51.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ bcel = "6.10.0"
bnd = "7.1.0"
bouncycastle-jdk18on = "1.80"
cache2k = "2.6.1.Final"
caffeine = "3.1.8"
caffeine = "3.2.0"
checkstyle = "10.21.1"
coherence = "24.09"
commons-collections4 = "4.5.0-M3"
Expand Down

0 comments on commit 439c561

Please sign in to comment.