From 365cdb76fe9089fcebfd5546500d574eda564fb4 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Wed, 31 May 2017 08:27:11 +0900 Subject: [PATCH] Upgrade Guava to 22.0 This version includes new features, and several API changes, some of which will require updates in Gerrit. Notably: - Hashing.sha1 and Hashing.md5 are deprecated, although may still be used. - CheckedFuture is deprecated. These will be fixed in follow-up commits. See the release note [1] for more details. [1] https://github.com/google/guava/wiki/Release22 Change-Id: I1627873503188596c9c921dde65340a29a5811e3 --- lib/guava.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/guava.bzl b/lib/guava.bzl index c71379eb6c..768b99ea93 100644 --- a/lib/guava.bzl +++ b/lib/guava.bzl @@ -1,5 +1,5 @@ -GUAVA_VERSION = "21.0" +GUAVA_VERSION = "22.0" -GUAVA_BIN_SHA1 = "3a3d111be1be1b745edfa7d91678a12d7ed38709" +GUAVA_BIN_SHA1 = "3564ef3803de51fb0530a8377ec6100b33b0d073" GUAVA_DOC_URL = "https://google.github.io/guava/releases/" + GUAVA_VERSION + "/api/docs/"