Skip to content

Commit cc2e372

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Prepare for release 33.1.0.
RELNOTES=n/a PiperOrigin-RevId: 615482195
1 parent fe28211 commit cc2e372

File tree

9 files changed

+24
-24
lines changed

9 files changed

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public FakeTicker advance(long nanoseconds) {
6464
/**
6565
* Advances the ticker value by {@code duration}.
6666
*
67-
* @since NEXT (but since 28.0 in the JRE <a
67+
* @since 33.1.0 (but since 28.0 in the JRE <a
6868
* href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
6969
*/
7070
@GwtIncompatible
@@ -97,7 +97,7 @@ public FakeTicker setAutoIncrementStep(long autoIncrementStep, TimeUnit timeUnit
9797
* <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
9898
* queried.
9999
*
100-
* @since NEXT (but since 28.0 in the JRE <a
100+
* @since 33.1.0 (but since 28.0 in the JRE <a
101101
* href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
102102
*/
103103
@GwtIncompatible

android/guava/src/com/google/common/base/Suppliers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public String toString() {
252252
* @param duration the length of time after a value is created that it should stop being returned
253253
* by subsequent {@code get()} calls
254254
* @throws IllegalArgumentException if {@code duration} is not positive
255-
* @since NEXT
255+
* @since 33.1.0
256256
*/
257257
@Beta // only until we're confident that Java 8+ APIs are safe for our Android users
258258
@J2ktIncompatible

android/guava/src/com/google/common/graph/AbstractNetwork.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ public String toString() {
282282
* Returns a {@link Set} whose methods throw {@link IllegalStateException} when the given edge is
283283
* not present in this network.
284284
*
285-
* @since NEXT
285+
* @since 33.1.0
286286
*/
287287
protected final <T> Set<T> edgeInvalidatableSet(Set<T> set, E edge) {
288288
return InvalidatableSet.of(
@@ -293,7 +293,7 @@ protected final <T> Set<T> edgeInvalidatableSet(Set<T> set, E edge) {
293293
* Returns a {@link Set} whose methods throw {@link IllegalStateException} when the given node is
294294
* not present in this network.
295295
*
296-
* @since NEXT
296+
* @since 33.1.0
297297
*/
298298
protected final <T> Set<T> nodeInvalidatableSet(Set<T> set, N node) {
299299
return InvalidatableSet.of(
@@ -304,7 +304,7 @@ protected final <T> Set<T> nodeInvalidatableSet(Set<T> set, N node) {
304304
* Returns a {@link Set} whose methods throw {@link IllegalStateException} when either of the
305305
* given nodes is not present in this network.
306306
*
307-
* @since NEXT
307+
* @since 33.1.0
308308
*/
309309
protected final <T> Set<T> nodePairInvalidatableSet(Set<T> set, N nodeU, N nodeV) {
310310
return InvalidatableSet.of(

android/guava/src/com/google/common/graph/Graphs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private static boolean canTraverseWithoutReusingEdge(
147147
* of the transitive closure of {@code graph}. In other words, the returned {@link Graph} will not
148148
* be updated after modifications to {@code graph}.
149149
*
150-
* @since NEXT (present with return type {@code Graph} since 20.0)
150+
* @since 33.1.0 (present with return type {@code Graph} since 20.0)
151151
*/
152152
// TODO(b/31438252): Consider potential optimizations for this algorithm.
153153
public static <N> ImmutableGraph<N> transitiveClosure(Graph<N> graph) {
@@ -194,7 +194,7 @@ public static <N> ImmutableGraph<N> transitiveClosure(Graph<N> graph) {
194194
* not be updated after modifications to {@code graph}.
195195
*
196196
* @throws IllegalArgumentException if {@code node} is not present in {@code graph}
197-
* @since NEXT (present with return type {@code Set} since 20.0)
197+
* @since 33.1.0 (present with return type {@code Set} since 20.0)
198198
*/
199199
public static <N> ImmutableSet<N> reachableNodes(Graph<N> graph, N node) {
200200
checkArgument(graph.nodes().contains(node), NODE_NOT_IN_GRAPH, node);

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

guava/src/com/google/common/base/Suppliers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public String toString() {
252252
* @param duration the length of time after a value is created that it should stop being returned
253253
* by subsequent {@code get()} calls
254254
* @throws IllegalArgumentException if {@code duration} is not positive
255-
* @since NEXT
255+
* @since 33.1.0
256256
*/
257257
@Beta // only until we're confident that Java 8+ APIs are safe for our Android users
258258
@J2ktIncompatible

guava/src/com/google/common/graph/AbstractNetwork.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public String toString() {
294294
* Returns a {@link Set} whose methods throw {@link IllegalStateException} when the given edge is
295295
* not present in this network.
296296
*
297-
* @since NEXT
297+
* @since 33.1.0
298298
*/
299299
protected final <T> Set<T> edgeInvalidatableSet(Set<T> set, E edge) {
300300
return InvalidatableSet.of(
@@ -305,7 +305,7 @@ protected final <T> Set<T> edgeInvalidatableSet(Set<T> set, E edge) {
305305
* Returns a {@link Set} whose methods throw {@link IllegalStateException} when the given node is
306306
* not present in this network.
307307
*
308-
* @since NEXT
308+
* @since 33.1.0
309309
*/
310310
protected final <T> Set<T> nodeInvalidatableSet(Set<T> set, N node) {
311311
return InvalidatableSet.of(
@@ -316,7 +316,7 @@ protected final <T> Set<T> nodeInvalidatableSet(Set<T> set, N node) {
316316
* Returns a {@link Set} whose methods throw {@link IllegalStateException} when either of the
317317
* given nodes is not present in this network.
318318
*
319-
* @since NEXT
319+
* @since 33.1.0
320320
*/
321321
protected final <T> Set<T> nodePairInvalidatableSet(Set<T> set, N nodeU, N nodeV) {
322322
return InvalidatableSet.of(

guava/src/com/google/common/graph/Graphs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ private static boolean canTraverseWithoutReusingEdge(
148148
* of the transitive closure of {@code graph}. In other words, the returned {@link Graph} will not
149149
* be updated after modifications to {@code graph}.
150150
*
151-
* @since NEXT (present with return type {@code Graph} since 20.0)
151+
* @since 33.1.0 (present with return type {@code Graph} since 20.0)
152152
*/
153153
// TODO(b/31438252): Consider potential optimizations for this algorithm.
154154
public static <N> ImmutableGraph<N> transitiveClosure(Graph<N> graph) {
@@ -195,7 +195,7 @@ public static <N> ImmutableGraph<N> transitiveClosure(Graph<N> graph) {
195195
* not be updated after modifications to {@code graph}.
196196
*
197197
* @throws IllegalArgumentException if {@code node} is not present in {@code graph}
198-
* @since NEXT (present with return type {@code Set} since 20.0)
198+
* @since 33.1.0 (present with return type {@code Set} since 20.0)
199199
*/
200200
public static <N> ImmutableSet<N> reachableNodes(Graph<N> graph, N node) {
201201
checkArgument(graph.nodes().contains(node), NODE_NOT_IN_GRAPH, node);

0 commit comments

Comments
 (0)