Skip to content

Commit 9a1b773

Browse files
committed
Prepare for release
1 parent 166f890 commit 9a1b773

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ subprojects {
6565
group = 'com.github.ben-manes.caffeine'
6666
version.with {
6767
major = 2 // incompatible API changes
68-
minor = 3 // backwards-compatible additions
69-
patch = 6 // backwards-compatible bug fixes
68+
minor = 4 // backwards-compatible additions
69+
patch = 0 // backwards-compatible bug fixes
7070
releaseBuild = rootProject.hasProperty('release')
7171
}
7272
archivesBaseName = path[1..-1].replaceAll(':', '-').toLowerCase()

guava/src/test/java/com/google/common/cache/CacheBuilderTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ public void testRemovalNotification_clear() throws InterruptedException {
391391
* cache afterward).
392392
*/
393393
@GwtIncompatible("QueuingRemovalListener")
394-
394+
@SuppressWarnings("FutureReturnValueIgnored")
395395
public void testRemovalNotification_clear_basher() throws InterruptedException {
396396
// If a clear() happens close to the end of computation, one of two things should happen:
397397
// - computation ends first: the removal listener is called, and the cache does not contain the
@@ -468,6 +468,7 @@ public void testRemovalNotification_clear_basher() throws InterruptedException {
468468
* (removed because of size limits or expiration) trigger appropriate removal notifications.
469469
*/
470470
@GwtIncompatible("QueuingRemovalListener")
471+
@SuppressWarnings("FutureReturnValueIgnored")
471472
// FIXME(ben): disabled due to TravisCI killing the process
472473
public void testRemovalNotification_get_basher() throws InterruptedException {
473474
int nTasks = 1000;

jcache/src/test/java/com/github/benmanes/caffeine/jcache/JCacheProfiler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ public void start() {
7777
}
7878
}
7979

80+
@SuppressWarnings("FutureReturnValueIgnored")
8081
private void scheduleStatusTask() {
8182
Stopwatch stopwatch = Stopwatch.createStarted();
8283
Executors.newSingleThreadScheduledExecutor().scheduleWithFixedDelay(() -> {

0 commit comments

Comments
 (0)