Skip to content

Commit

Permalink
Release 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Aug 6, 2019
1 parent c06c5cc commit fb89d91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ Powering infrastructure near you:
Download from [Maven Central][maven] or depend via Gradle:

```gradle
compile 'com.github.ben-manes.caffeine:caffeine:2.7.0'
compile 'com.github.ben-manes.caffeine:caffeine:2.8.0'
// Optional extensions
compile 'com.github.ben-manes.caffeine:guava:2.7.0'
compile 'com.github.ben-manes.caffeine:jcache:2.7.0'
compile 'com.github.ben-manes.caffeine:guava:2.8.0'
compile 'com.github.ben-manes.caffeine:jcache:2.8.0'
```

See the [release notes][releases] for details of the changes.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ subprojects {
version.with {
major = 2 // incompatible API changes
minor = 8 // backwards-compatible additions
patch = 0 // backwards-compatible bug fixes
patch = 1 // backwards-compatible bug fixes
releaseBuild = rootProject.hasProperty('release')
}
archivesBaseName = path[1..-1].replaceAll(':', '-').toLowerCase()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ public final class BloomFilter implements Membership {
/**
* Creates a membership sketch based on the expected number of insertions and the false positive
* probability.
*
* @param expectedInsertions the number of expected insertions
* @param fpp the false positive probability, where 0.0 > fpp < 1.0
*/
public BloomFilter(Config config) {
MembershipSettings settings = new BasicSettings(config).membership();
Expand Down

0 comments on commit fb89d91

Please sign in to comment.