Skip to content

Commit

Permalink
Prepare for release 33.0.0.
Browse files Browse the repository at this point in the history
RELNOTES=n/a
PiperOrigin-RevId: 591934974
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Dec 18, 2023
1 parent 0243fa6 commit d258d3e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,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.3-jre` or
`32.1.3-android`. For more about depending on Guava, see
These flavors are specified in the Maven version field as either `33.0.0-jre` or
`33.0.0-android`. For more about depending on Guava, see
[using Guava in your build].

To add a dependency on Guava using Maven, use the following:
Expand All @@ -38,9 +38,9 @@ To add a dependency on Guava using Maven, use the following:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
<version>33.0.0-jre</version>
<!-- or, for Android: -->
<version>32.1.3-android</version>
<version>33.0.0-android</version>
</dependency>
```

Expand All @@ -51,16 +51,16 @@ dependencies {
// Pick one:
// 1. Use Guava in your implementation only:
implementation("com.google.guava:guava:32.1.3-jre")
implementation("com.google.guava:guava:33.0.0-jre")
// 2. Use Guava types in your public API:
api("com.google.guava:guava:32.1.3-jre")
api("com.google.guava:guava:33.0.0-jre")
// 3. Android - Use Guava in your implementation only:
implementation("com.google.guava:guava:32.1.3-android")
implementation("com.google.guava:guava:33.0.0-android")
// 4. Android - Use Guava types in your public API:
api("com.google.guava:guava:32.1.3-android")
api("com.google.guava:guava:33.0.0-android")
}
```

Expand Down
4 changes: 2 additions & 2 deletions android/guava/src/com/google/common/net/HttpHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ private ReferrerPolicyValues() {}
* href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
* Sec-Ad-Auction-Fetch}</a> header field name.
*
* @since NEXT
* @since 33.0.0
*/
public static final String SEC_AD_AUCTION_FETCH = "Sec-Ad-Auction-Fetch";

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

Expand Down
4 changes: 2 additions & 2 deletions guava-testlib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To add a dependency on Guava testlib using Maven, use the following:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<version>32.1.3-jre</version>
<version>33.0.0-jre</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -22,7 +22,7 @@ To add a dependency using Gradle:

```gradle
dependencies {
test 'com.google.guava:guava-testlib:32.1.3-jre'
test 'com.google.guava:guava-testlib:33.0.0-jre'
}
```

Expand Down
4 changes: 2 additions & 2 deletions guava/src/com/google/common/net/HttpHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ private ReferrerPolicyValues() {}
* href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
* Sec-Ad-Auction-Fetch}</a> header field name.
*
* @since NEXT
* @since 33.0.0
*/
public static final String SEC_AD_AUCTION_FETCH = "Sec-Ad-Auction-Fetch";

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

Expand Down

0 comments on commit d258d3e

Please sign in to comment.