Skip to content

Commit f6ef1b5

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Prepare for release 33.5.0.
RELNOTES=n/a PiperOrigin-RevId: 807672090
1 parent eeced90 commit f6ef1b5

File tree

11 files changed

+19
-19
lines changed

11 files changed

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

android/guava-testlib/src/com/google/common/testing/CollectorTester.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* </pre>
4545
*
4646
* @author Louis Wasserman
47-
* @since NEXT (but since 21.0 in the JRE flavor)
47+
* @since 33.5.0 (but since 21.0 in the JRE flavor)
4848
*/
4949
@GwtCompatible
5050
@NullMarked

android/guava/src/com/google/common/math/IntMath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ public static boolean isPrime(int n) {
751751
* hash code) into a well-distributed nonnegative number, the most even distribution is achieved
752752
* not by this method or other absolute value methods, but by {@code x & Integer.MAX_VALUE}.
753753
*
754-
* @since NEXT
754+
* @since 33.5.0
755755
*/
756756
public static int saturatedAbs(int x) {
757757
return (x == Integer.MIN_VALUE) ? Integer.MAX_VALUE : Math.abs(x);

android/guava/src/com/google/common/math/LongMath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@ public static double roundToDouble(long x, RoundingMode mode) {
13601360
* into a well-distributed nonnegative number, the most even distribution is achieved not by this
13611361
* method or other absolute value methods, but by {@code x & Long.MAX_VALUE}.
13621362
*
1363-
* @since NEXT
1363+
* @since 33.5.0
13641364
*/
13651365
public static long saturatedAbs(long x) {
13661366
return (x == Long.MIN_VALUE) ? Long.MAX_VALUE : Math.abs(x);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ private static MediaType addKnownType(MediaType mediaType) {
256256
/**
257257
* <a href="https://en.wikipedia.org/wiki/AVIF">AVIF image format</a>.
258258
*
259-
* @since NEXT
259+
* @since 33.5.0
260260
*/
261261
public static final MediaType AVIF = createConstant(IMAGE_TYPE, "avif");
262262

android/guava/src/com/google/common/util/concurrent/Striped.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public Iterable<L> bulkGet(Iterable<? extends Object> keys) {
192192
* @param stripes the minimum number of stripes (locks) required
193193
* @param supplier a {@code Supplier<L>} object to obtain locks from
194194
* @return a new {@code Striped<L>}
195-
* @since NEXT
195+
* @since 33.5.0
196196
*/
197197
public static <L> Striped<L> custom(int stripes, Supplier<L> supplier) {
198198
return new CompactStriped<>(stripes, supplier);

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

guava/src/com/google/common/math/IntMath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ public static boolean isPrime(int n) {
751751
* hash code) into a well-distributed nonnegative number, the most even distribution is achieved
752752
* not by this method or other absolute value methods, but by {@code x & Integer.MAX_VALUE}.
753753
*
754-
* @since NEXT
754+
* @since 33.5.0
755755
*/
756756
public static int saturatedAbs(int x) {
757757
return (x == Integer.MIN_VALUE) ? Integer.MAX_VALUE : Math.abs(x);

guava/src/com/google/common/math/LongMath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@ public static double roundToDouble(long x, RoundingMode mode) {
13601360
* into a well-distributed nonnegative number, the most even distribution is achieved not by this
13611361
* method or other absolute value methods, but by {@code x & Long.MAX_VALUE}.
13621362
*
1363-
* @since NEXT
1363+
* @since 33.5.0
13641364
*/
13651365
public static long saturatedAbs(long x) {
13661366
return (x == Long.MIN_VALUE) ? Long.MAX_VALUE : Math.abs(x);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ private static MediaType addKnownType(MediaType mediaType) {
256256
/**
257257
* <a href="https://en.wikipedia.org/wiki/AVIF">AVIF image format</a>.
258258
*
259-
* @since NEXT
259+
* @since 33.5.0
260260
*/
261261
public static final MediaType AVIF = createConstant(IMAGE_TYPE, "avif");
262262

0 commit comments

Comments
 (0)