Skip to content

Commit d258d3e

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Prepare for release 33.0.0.
RELNOTES=n/a PiperOrigin-RevId: 591934974
1 parent 0243fa6 commit d258d3e

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
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 `32.1.3-jre` or
32-
`32.1.3-android`. For more about depending on Guava, see
31+
These flavors are specified in the Maven version field as either `33.0.0-jre` or
32+
`33.0.0-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>32.1.3-jre</version>
41+
<version>33.0.0-jre</version>
4242
<!-- or, for Android: -->
43-
<version>32.1.3-android</version>
43+
<version>33.0.0-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:32.1.3-jre")
54+
implementation("com.google.guava:guava:33.0.0-jre")
5555
5656
// 2. Use Guava types in your public API:
57-
api("com.google.guava:guava:32.1.3-jre")
57+
api("com.google.guava:guava:33.0.0-jre")
5858
5959
// 3. Android - Use Guava in your implementation only:
60-
implementation("com.google.guava:guava:32.1.3-android")
60+
implementation("com.google.guava:guava:33.0.0-android")
6161
6262
// 4. Android - Use Guava types in your public API:
63-
api("com.google.guava:guava:32.1.3-android")
63+
api("com.google.guava:guava:33.0.0-android")
6464
}
6565
```
6666

android/guava/src/com/google/common/net/HttpHeaders.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ private ReferrerPolicyValues() {}
861861
* href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
862862
* Sec-Ad-Auction-Fetch}</a> header field name.
863863
*
864-
* @since NEXT
864+
* @since 33.0.0
865865
*/
866866
public static final String SEC_AD_AUCTION_FETCH = "Sec-Ad-Auction-Fetch";
867867

@@ -870,7 +870,7 @@ private ReferrerPolicyValues() {}
870870
* href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
871871
* Ad-Auction-Signals}</a> header field name.
872872
*
873-
* @since NEXT
873+
* @since 33.0.0
874874
*/
875875
public static final String AD_AUCTION_SIGNALS = "Ad-Auction-Signals";
876876

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

guava/src/com/google/common/net/HttpHeaders.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ private ReferrerPolicyValues() {}
861861
* href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
862862
* Sec-Ad-Auction-Fetch}</a> header field name.
863863
*
864-
* @since NEXT
864+
* @since 33.0.0
865865
*/
866866
public static final String SEC_AD_AUCTION_FETCH = "Sec-Ad-Auction-Fetch";
867867

@@ -870,7 +870,7 @@ private ReferrerPolicyValues() {}
870870
* href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
871871
* Ad-Auction-Signals}</a> header field name.
872872
*
873-
* @since NEXT
873+
* @since 33.0.0
874874
*/
875875
public static final String AD_AUCTION_SIGNALS = "Ad-Auction-Signals";
876876

0 commit comments

Comments
 (0)