Skip to content

Commit dc91082

Browse files
cpovirkGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Prepare for release 33.4.8.
RELNOTES=n/a PiperOrigin-RevId: 747502562
1 parent e90e680 commit dc91082

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

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

3535
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:
3838
<dependency>
3939
<groupId>com.google.guava</groupId>
4040
<artifactId>guava</artifactId>
41-
<version>33.4.7-jre</version>
41+
<version>33.4.8-jre</version>
4242
<!-- or, for Android: -->
43-
<version>33.4.7-android</version>
43+
<version>33.4.8-android</version>
4444
</dependency>
4545
```
4646

@@ -51,16 +51,16 @@ dependencies {
5151
// Pick one:
5252
5353
// 1. Use Guava in your implementation only:
54-
implementation("com.google.guava:guava:33.4.7-jre")
54+
implementation("com.google.guava:guava:33.4.8-jre")
5555
5656
// 2. Use Guava types in your public API:
57-
api("com.google.guava:guava:33.4.7-jre")
57+
api("com.google.guava:guava:33.4.8-jre")
5858
5959
// 3. Android - Use Guava in your implementation only:
60-
implementation("com.google.guava:guava:33.4.7-android")
60+
implementation("com.google.guava:guava:33.4.8-android")
6161
6262
// 4. Android - Use Guava types in your public API:
63-
api("com.google.guava:guava:33.4.7-android")
63+
api("com.google.guava:guava:33.4.8-android")
6464
}
6565
```
6666

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>33.4.7-jre</version>
16+
<version>33.4.8-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:33.4.7-jre'
25+
test 'com.google.guava:guava-testlib:33.4.8-jre'
2626
}
2727
```
2828

0 commit comments

Comments
 (0)