Skip to content

Commit fd945ba

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Prepare for release 31.0.1.
RELNOTES=n/a PiperOrigin-RevId: 399242763
1 parent 0ad6d6d commit fd945ba

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Guava's Maven group ID is `com.google.guava`, and its artifact ID is `guava`.
2323
Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
2424
for use on Android or Java 7 or by any library that wants to be compatible with
2525
either of those. These flavors are specified in the Maven version field as
26-
either `31.0-jre` or `31.0-android`. For more about depending on Guava, see
26+
either `31.0.1-jre` or `31.0.1-android`. For more about depending on Guava, see
2727
[using Guava in your build].
2828

2929
To add a dependency on Guava using Maven, use the following:
@@ -32,9 +32,9 @@ To add a dependency on Guava using Maven, use the following:
3232
<dependency>
3333
<groupId>com.google.guava</groupId>
3434
<artifactId>guava</artifactId>
35-
<version>31.0-jre</version>
35+
<version>31.0.1-jre</version>
3636
<!-- or, for Android: -->
37-
<version>31.0-android</version>
37+
<version>31.0.1-android</version>
3838
</dependency>
3939
```
4040

@@ -45,16 +45,16 @@ dependencies {
4545
// Pick one:
4646
4747
// 1. Use Guava in your implementation only:
48-
implementation("com.google.guava:guava:31.0-jre")
48+
implementation("com.google.guava:guava:31.0.1-jre")
4949
5050
// 2. Use Guava types in your public API:
51-
api("com.google.guava:guava:31.0-jre")
51+
api("com.google.guava:guava:31.0.1-jre")
5252
5353
// 3. Android - Use Guava in your implementation only:
54-
implementation("com.google.guava:guava:31.0-android")
54+
implementation("com.google.guava:guava:31.0.1-android")
5555
5656
// 4. Android - Use Guava types in your public API:
57-
api("com.google.guava:guava:31.0-android")
57+
api("com.google.guava:guava:31.0.1-android")
5858
}
5959
```
6060

guava-testlib/README.md

Lines changed: 2 additions & 2 deletions
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>31.0-jre</version>
16+
<version>31.0.1-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:31.0-jre'
25+
test 'com.google.guava:guava-testlib:31.0.1-jre'
2626
}
2727
```
2828

0 commit comments

Comments
 (0)