Skip to content

Commit 9f2ee2e

Browse files
committed
Release 2.8.2
1 parent 8121c1d commit 9f2ee2e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Powering infrastructure near you:
6161
* [HBase][hbase]: A distributed, scalable, big data store
6262
* [Apache Solr][solr]: Blazingly fast enterprise search
6363
* [Infinispan][infinispan]: Distributed in-memory data grid
64+
* [Redisson][redisson]: Ultra-fast in-memory data grid
6465
* [OpenWhisk][open-whisk]: Serverless cloud platform
6566
* [Corfu][corfu]: A cluster consistency platform
6667
* [Grails][grails]: Groovy-based web framework
@@ -81,11 +82,11 @@ Powering infrastructure near you:
8182
Download from [Maven Central][maven] or depend via Gradle:
8283

8384
```gradle
84-
compile 'com.github.ben-manes.caffeine:caffeine:2.8.1'
85+
compile 'com.github.ben-manes.caffeine:caffeine:2.8.2'
8586
8687
// Optional extensions
87-
compile 'com.github.ben-manes.caffeine:guava:2.8.1'
88-
compile 'com.github.ben-manes.caffeine:jcache:2.8.1'
88+
compile 'com.github.ben-manes.caffeine:guava:2.8.2'
89+
compile 'com.github.ben-manes.caffeine:jcache:2.8.2'
8990
```
9091

9192
See the [release notes][releases] for details of the changes.
@@ -136,6 +137,7 @@ Snapshots of the development version are available in
136137
[akka-http]: https://doc.akka.io/docs/akka-http/current/common/caching.html
137138
[micronaut]: https://docs.micronaut.io/latest/guide/index.html#caching
138139
[play]: https://www.playframework.com/documentation/latest/JavaCache
140+
[redisson]: https://github.com/redisson/redisson
139141
[accumulo]: https://accumulo.apache.org
140142
[dropwizard]: https://www.dropwizard.io
141143
[grails]: https://grails.org

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ allprojects {
4444
version.with {
4545
major = 2 // incompatible API changes
4646
minor = 8 // backwards-compatible additions
47-
patch = 2 // backwards-compatible bug fixes
47+
patch = 3 // backwards-compatible bug fixes
4848
releaseBuild = rootProject.hasProperty('release')
4949
}
5050
}

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
org.gradle.jvmargs=-Xmx1024m -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=0 -noverify -XX:+HeapDumpOnOutOfMemoryError
2+
systemProp.org.gradle.internal.publish.checksums.insecure=true
23
org.gradle.daemon=true
34
checksumIgnore=true
45
nexusUsername=

0 commit comments

Comments
 (0)