From 36942e30fae35ff9cfca73b68bb3312b188bf01e Mon Sep 17 00:00:00 2001 From: cpovirk Date: Mon, 31 Jul 2023 13:35:21 -0700 Subject: [PATCH] Prepare for release 32.1.2. RELNOTES=n/a PiperOrigin-RevId: 552578256 --- README.md | 16 ++++++++-------- guava-testlib/README.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ee8e27c4e10..ea6219ae4799 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,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 `32.1.1-jre` or -`32.1.1-android`. For more about depending on Guava, see +These flavors are specified in the Maven version field as either `32.1.2-jre` or +`32.1.2-android`. For more about depending on Guava, see [using Guava in your build]. To add a dependency on Guava using Maven, use the following: @@ -37,9 +37,9 @@ To add a dependency on Guava using Maven, use the following: com.google.guava guava - 32.1.1-jre + 32.1.2-jre - 32.1.1-android + 32.1.2-android ``` @@ -50,16 +50,16 @@ dependencies { // Pick one: // 1. Use Guava in your implementation only: - implementation("com.google.guava:guava:32.1.1-jre") + implementation("com.google.guava:guava:32.1.2-jre") // 2. Use Guava types in your public API: - api("com.google.guava:guava:32.1.1-jre") + api("com.google.guava:guava:32.1.2-jre") // 3. Android - Use Guava in your implementation only: - implementation("com.google.guava:guava:32.1.1-android") + implementation("com.google.guava:guava:32.1.2-android") // 4. Android - Use Guava types in your public API: - api("com.google.guava:guava:32.1.1-android") + api("com.google.guava:guava:32.1.2-android") } ``` diff --git a/guava-testlib/README.md b/guava-testlib/README.md index 5984d69b850e..141ad989c6a9 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 - 32.1.1-jre + 32.1.2-jre test ``` @@ -22,7 +22,7 @@ To add a dependency using Gradle: ```gradle dependencies { - test 'com.google.guava:guava-testlib:32.1.1-jre' + test 'com.google.guava:guava-testlib:32.1.2-jre' } ```