Skip to content

Commit 8db6cc7

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Prepare for release 33.3.0.
RELNOTES=n/a PiperOrigin-RevId: 663814432
1 parent a94ff8b commit 8db6cc7

File tree

13 files changed

+29
-29
lines changed

13 files changed

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

android/guava/src/com/google/common/cache/CacheBuilder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ Strength getValueStrength() {
717717
* @throws IllegalArgumentException if {@code duration} is negative
718718
* @throws IllegalStateException if {@link #expireAfterWrite} was already set
719719
* @throws ArithmeticException for durations greater than +/- approximately 292 years
720-
* @since NEXT (but since 25.0 in the JRE <a
720+
* @since 33.3.0 (but since 25.0 in the JRE <a
721721
* href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
722722
*/
723723
@J2ObjCIncompatible
@@ -794,7 +794,7 @@ long getExpireAfterWriteNanos() {
794794
* @throws IllegalArgumentException if {@code duration} is negative
795795
* @throws IllegalStateException if {@link #expireAfterAccess} was already set
796796
* @throws ArithmeticException for durations greater than +/- approximately 292 years
797-
* @since NEXT (but since 25.0 in the JRE <a
797+
* @since 33.3.0 (but since 25.0 in the JRE <a
798798
* href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
799799
*/
800800
@J2ObjCIncompatible
@@ -880,7 +880,7 @@ long getExpireAfterAccessNanos() {
880880
* @throws IllegalArgumentException if {@code duration} is negative
881881
* @throws IllegalStateException if {@link #refreshAfterWrite} was already set
882882
* @throws ArithmeticException for durations greater than +/- approximately 292 years
883-
* @since NEXT (but since 25.0 in the JRE <a
883+
* @since 33.3.0 (but since 25.0 in the JRE <a
884884
* href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
885885
*/
886886
@J2ObjCIncompatible

android/guava/src/com/google/common/collect/ImmutableListMultimap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public static <K, V> Builder<K, V> builder() {
205205
* {@code expectedKeys} is a good estimate.
206206
*
207207
* @throws IllegalArgumentException if {@code expectedKeys} is negative
208-
* @since NEXT
208+
* @since 33.3.0
209209
*/
210210
public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) {
211211
checkNonnegative(expectedKeys, "expectedKeys");
@@ -246,7 +246,7 @@ public Builder() {}
246246
/**
247247
* {@inheritDoc}
248248
*
249-
* @since NEXT
249+
* @since 33.3.0
250250
*/
251251
@CanIgnoreReturnValue
252252
@Override

android/guava/src/com/google/common/collect/ImmutableMultimap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public static <K, V> Builder<K, V> builder() {
134134
* {@code expectedKeys} is a good estimate.
135135
*
136136
* @throws IllegalArgumentException if {@code expectedKeys} is negative
137-
* @since NEXT
137+
* @since 33.3.0
138138
*/
139139
public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) {
140140
checkNonnegative(expectedKeys, "expectedKeys");
@@ -203,7 +203,7 @@ ImmutableCollection.Builder<V> newValueCollectionBuilderWithExpectedSize(int exp
203203
* {@link #expectedValuesPerKey} as its hint.
204204
*
205205
* @throws IllegalArgumentException if {@code expectedValuesPerKey} is negative
206-
* @since NEXT
206+
* @since 33.3.0
207207
*/
208208
@CanIgnoreReturnValue
209209
public Builder<K, V> expectedValuesPerKey(int expectedValuesPerKey) {

android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public static <K, V> Builder<K, V> builder() {
232232
* {@code expectedKeys} is a good estimate.
233233
*
234234
* @throws IllegalArgumentException if {@code expectedKeys} is negative
235-
* @since NEXT
235+
* @since 33.3.0
236236
*/
237237
public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) {
238238
checkNonnegative(expectedKeys, "expectedKeys");
@@ -295,7 +295,7 @@ int expectedValueCollectionSize(int defaultExpectedValues, Iterable<?> values) {
295295
* <p>Note that {@code expectedValuesPerKey} is taken to mean the expected number of
296296
* <i>distinct</i> values per key.
297297
*
298-
* @since NEXT
298+
* @since 33.3.0
299299
*/
300300
@CanIgnoreReturnValue
301301
@Override

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ private ReferrerPolicyValues() {}
755755
* The HTTP <a href="https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors">{@code
756756
* Sec-CH-UA-Form-Factors}</a> header field name.
757757
*
758-
* @since NEXT
758+
* @since 33.3.0
759759
*/
760760
public static final String SEC_CH_UA_FORM_FACTORS = "Sec-CH-UA-Form-Factors";
761761

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ private static MediaType addKnownType(MediaType mediaType) {
159159
* As described in <a href="https://www.rfc-editor.org/rfc/rfc7763.html">RFC 7763</a>, this
160160
* constant ({@code text/markdown}) is used for Markdown documents.
161161
*
162-
* @since NEXT
162+
* @since 33.3.0
163163
*/
164164
public static final MediaType MD_UTF_8 = createConstantUtf8(TEXT_TYPE, "markdown");
165165

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

guava/src/com/google/common/collect/ImmutableListMultimap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public static <K, V> Builder<K, V> builder() {
201201
* {@code expectedKeys} is a good estimate.
202202
*
203203
* @throws IllegalArgumentException if {@code expectedKeys} is negative
204-
* @since NEXT
204+
* @since 33.3.0
205205
*/
206206
public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) {
207207
checkNonnegative(expectedKeys, "expectedKeys");
@@ -242,7 +242,7 @@ public Builder() {}
242242
/**
243243
* {@inheritDoc}
244244
*
245-
* @since NEXT
245+
* @since 33.3.0
246246
*/
247247
@CanIgnoreReturnValue
248248
@Override

guava/src/com/google/common/collect/ImmutableMultimap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public static <K, V> Builder<K, V> builder() {
136136
* {@code expectedKeys} is a good estimate.
137137
*
138138
* @throws IllegalArgumentException if {@code expectedKeys} is negative
139-
* @since NEXT
139+
* @since 33.3.0
140140
*/
141141
public static <K, V> Builder<K, V> builderWithExpectedKeys(int expectedKeys) {
142142
checkNonnegative(expectedKeys, "expectedKeys");
@@ -205,7 +205,7 @@ ImmutableCollection.Builder<V> newValueCollectionBuilderWithExpectedSize(int exp
205205
* {@link #expectedValuesPerKey} as its hint.
206206
*
207207
* @throws IllegalArgumentException if {@code expectedValuesPerKey} is negative
208-
* @since NEXT
208+
* @since 33.3.0
209209
*/
210210
@CanIgnoreReturnValue
211211
public Builder<K, V> expectedValuesPerKey(int expectedValuesPerKey) {

0 commit comments

Comments
 (0)