From 25322a7cc53c1c937c933ef03ca70201d6622cbb Mon Sep 17 00:00:00 2001 From: cpovirk Date: Fri, 31 May 2024 10:41:11 -0700 Subject: [PATCH] Prepare for release 33.2.1. RELNOTES=n/a PiperOrigin-RevId: 639081757 --- README.md | 16 ++++++++-------- guava-testlib/README.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 76a1feebd093..47f0b36b7c54 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ Guava comes in two flavors: Guava's Maven group ID is `com.google.guava`, and its artifact ID is `guava`. Guava provides two different "flavors": one for use on a (Java 8+) JRE and one for use on Android or by any library that wants to be compatible with Android. -These flavors are specified in the Maven version field as either `33.2.0-jre` or -`33.2.0-android`. For more about depending on Guava, see +These flavors are specified in the Maven version field as either `33.2.1-jre` or +`33.2.1-android`. For more about depending on Guava, see [using Guava in your build]. To add a dependency on Guava using Maven, use the following: @@ -38,9 +38,9 @@ To add a dependency on Guava using Maven, use the following: com.google.guava guava - 33.2.0-jre + 33.2.1-jre - 33.2.0-android + 33.2.1-android ``` @@ -51,16 +51,16 @@ dependencies { // Pick one: // 1. Use Guava in your implementation only: - implementation("com.google.guava:guava:33.2.0-jre") + implementation("com.google.guava:guava:33.2.1-jre") // 2. Use Guava types in your public API: - api("com.google.guava:guava:33.2.0-jre") + api("com.google.guava:guava:33.2.1-jre") // 3. Android - Use Guava in your implementation only: - implementation("com.google.guava:guava:33.2.0-android") + implementation("com.google.guava:guava:33.2.1-android") // 4. Android - Use Guava types in your public API: - api("com.google.guava:guava:33.2.0-android") + api("com.google.guava:guava:33.2.1-android") } ``` diff --git a/guava-testlib/README.md b/guava-testlib/README.md index 37aa7241a739..d4a47dc1d276 100644 --- a/guava-testlib/README.md +++ b/guava-testlib/README.md @@ -13,7 +13,7 @@ To add a dependency on Guava testlib using Maven, use the following: com.google.guava guava-testlib - 33.2.0-jre + 33.2.1-jre test ``` @@ -22,7 +22,7 @@ To add a dependency using Gradle: ```gradle dependencies { - test 'com.google.guava:guava-testlib:33.2.0-jre' + test 'com.google.guava:guava-testlib:33.2.1-jre' } ```