From cc4885b6d649a8d53b4a292f75817c312fb9f905 Mon Sep 17 00:00:00 2001 From: Ben Manes Date: Sat, 23 Apr 2016 14:28:00 -0700 Subject: [PATCH] Prepare for release --- build.gradle | 4 ++-- .../cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 63b156639d..54dc090580 100644 --- a/build.gradle +++ b/build.gradle @@ -48,8 +48,8 @@ subprojects { group = 'com.github.ben-manes.caffeine' version.with { major = 2 // incompatible API changes - minor = 2 // backwards-compatible additions - patch = 8 // backwards-compatible bug fixes + minor = 3 // backwards-compatible additions + patch = 0 // backwards-compatible bug fixes releaseBuild = rootProject.hasProperty('release') } archivesBaseName = path[1..-1].replaceAll(':', '-').toLowerCase() diff --git a/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java b/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java index b943a04fcc..c248fefab1 100644 --- a/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java +++ b/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java @@ -191,7 +191,6 @@ enum Status { static final class Node { final long key; - int recencyMove; Status status; Node prev; Node next;