Skip to content

Commit a78bea4

Browse files
cpovirkGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Prepare for release 32.1.3.
RELNOTES=n/a PiperOrigin-RevId: 571399331
1 parent 9507996 commit a78bea4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Diff for: README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Guava comes in two flavors:
2727
Guava's Maven group ID is `com.google.guava`, and its artifact ID is `guava`.
2828
Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
2929
for use on Android or by any library that wants to be compatible with Android.
30-
These flavors are specified in the Maven version field as either `32.1.2-jre` or
31-
`32.1.2-android`. For more about depending on Guava, see
30+
These flavors are specified in the Maven version field as either `32.1.3-jre` or
31+
`32.1.3-android`. For more about depending on Guava, see
3232
[using Guava in your build].
3333

3434
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:
3737
<dependency>
3838
<groupId>com.google.guava</groupId>
3939
<artifactId>guava</artifactId>
40-
<version>32.1.2-jre</version>
40+
<version>32.1.3-jre</version>
4141
<!-- or, for Android: -->
42-
<version>32.1.2-android</version>
42+
<version>32.1.3-android</version>
4343
</dependency>
4444
```
4545

@@ -50,16 +50,16 @@ dependencies {
5050
// Pick one:
5151
5252
// 1. Use Guava in your implementation only:
53-
implementation("com.google.guava:guava:32.1.2-jre")
53+
implementation("com.google.guava:guava:32.1.3-jre")
5454
5555
// 2. Use Guava types in your public API:
56-
api("com.google.guava:guava:32.1.2-jre")
56+
api("com.google.guava:guava:32.1.3-jre")
5757
5858
// 3. Android - Use Guava in your implementation only:
59-
implementation("com.google.guava:guava:32.1.2-android")
59+
implementation("com.google.guava:guava:32.1.3-android")
6060
6161
// 4. Android - Use Guava types in your public API:
62-
api("com.google.guava:guava:32.1.2-android")
62+
api("com.google.guava:guava:32.1.3-android")
6363
}
6464
```
6565

Diff for: guava-testlib/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To add a dependency on Guava testlib using Maven, use the following:
1313
<dependency>
1414
<groupId>com.google.guava</groupId>
1515
<artifactId>guava-testlib</artifactId>
16-
<version>32.1.2-jre</version>
16+
<version>32.1.3-jre</version>
1717
<scope>test</scope>
1818
</dependency>
1919
```
@@ -22,7 +22,7 @@ To add a dependency using Gradle:
2222

2323
```gradle
2424
dependencies {
25-
test 'com.google.guava:guava-testlib:32.1.2-jre'
25+
test 'com.google.guava:guava-testlib:32.1.3-jre'
2626
}
2727
```
2828

0 commit comments

Comments
 (0)