Skip to content

Commit b503ce6

Browse files
committed
Prepare for release 28.1.
RELNOTES=n/a ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=265978211
1 parent 52de2ac commit b503ce6

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Guava's Maven group ID is `com.google.guava` and its artifact ID is `guava`.
2121
Guava provides two different "flavors": one for use on a (Java 8+) JRE and one
2222
for use on Android or Java 7 or by any library that wants to be compatible with
2323
either of those. These flavors are specified in the Maven version field as
24-
either `28.0-jre` or `28.0-android`. For more about depending on
24+
either `28.1-jre` or `28.1-android`. For more about depending on
2525
Guava, see [using Guava in your build].
2626

2727
To add a dependency on Guava using Maven, use the following:
@@ -30,19 +30,19 @@ To add a dependency on Guava using Maven, use the following:
3030
<dependency>
3131
<groupId>com.google.guava</groupId>
3232
<artifactId>guava</artifactId>
33-
<version>28.0-jre</version>
33+
<version>28.1-jre</version>
3434
<!-- or, for Android: -->
35-
<version>28.0-android</version>
35+
<version>28.1-android</version>
3636
</dependency>
3737
```
3838

3939
To add a dependency using Gradle:
4040

4141
```gradle
4242
dependencies {
43-
compile 'com.google.guava:guava:28.0-jre'
43+
compile 'com.google.guava:guava:28.1-jre'
4444
// or, for Android:
45-
api 'com.google.guava:guava:28.0-android'
45+
api 'com.google.guava:guava:28.1-android'
4646
}
4747
```
4848

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ private ReferrerPolicyValues() {}
175175
* The HTTP <a href="https://w3c.github.io/webappsec-upgrade-insecure-requests/#preference">{@code
176176
* Upgrade-Insecure-Requests}</a> header field name.
177177
*
178-
* @since NEXT
178+
* @since 28.1
179179
*/
180180
public static final String UPGRADE_INSECURE_REQUESTS = "Upgrade-Insecure-Requests";
181181

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,14 @@ private static MediaType addKnownType(MediaType mediaType) {
245245
/**
246246
* <a href="https://www.iana.org/assignments/media-types/image/heif">HEIF image format</a>.
247247
*
248-
* @since NEXT
248+
* @since 28.1
249249
*/
250250
public static final MediaType HEIF = createConstant(IMAGE_TYPE, "heif");
251251

252252
/**
253253
* <a href="https://tools.ietf.org/html/rfc3745">JP2K image format</a>.
254254
*
255-
* @since NEXT
255+
* @since 28.1
256256
*/
257257
public static final MediaType JP2K = createConstant(IMAGE_TYPE, "jp2");
258258

guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public static <E> SpliteratorTester<E> of(Supplier<Spliterator<E>> spliteratorSu
239239
ImmutableSet.of(() -> new GeneralSpliteratorOfObject<>(spliteratorSupplier.get())));
240240
}
241241

242-
/** @since NEXT */
242+
/** @since 28.1 */
243243
@SuppressWarnings("AndroidJdkLibsChecker") // see comment on GeneralSpliteratorOfPrimitive
244244
public static SpliteratorTester<Integer> ofInt(Supplier<Spliterator.OfInt> spliteratorSupplier) {
245245
return new SpliteratorTester<>(
@@ -248,7 +248,7 @@ public static SpliteratorTester<Integer> ofInt(Supplier<Spliterator.OfInt> split
248248
() -> new GeneralSpliteratorOfPrimitive<>(spliteratorSupplier.get(), c -> c::accept)));
249249
}
250250

251-
/** @since NEXT */
251+
/** @since 28.1 */
252252
@SuppressWarnings("AndroidJdkLibsChecker") // see comment on GeneralSpliteratorOfPrimitive
253253
public static SpliteratorTester<Long> ofLong(Supplier<Spliterator.OfLong> spliteratorSupplier) {
254254
return new SpliteratorTester<>(
@@ -257,7 +257,7 @@ public static SpliteratorTester<Long> ofLong(Supplier<Spliterator.OfLong> splite
257257
() -> new GeneralSpliteratorOfPrimitive<>(spliteratorSupplier.get(), c -> c::accept)));
258258
}
259259

260-
/** @since NEXT */
260+
/** @since 28.1 */
261261
@SuppressWarnings("AndroidJdkLibsChecker") // see comment on GeneralSpliteratorOfPrimitive
262262
public static SpliteratorTester<Double> ofDouble(
263263
Supplier<Spliterator.OfDouble> spliteratorSupplier) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ private ReferrerPolicyValues() {}
175175
* The HTTP <a href="https://w3c.github.io/webappsec-upgrade-insecure-requests/#preference">{@code
176176
* Upgrade-Insecure-Requests}</a> header field name.
177177
*
178-
* @since NEXT
178+
* @since 28.1
179179
*/
180180
public static final String UPGRADE_INSECURE_REQUESTS = "Upgrade-Insecure-Requests";
181181

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,14 @@ private static MediaType addKnownType(MediaType mediaType) {
245245
/**
246246
* <a href="https://www.iana.org/assignments/media-types/image/heif">HEIF image format</a>.
247247
*
248-
* @since NEXT
248+
* @since 28.1
249249
*/
250250
public static final MediaType HEIF = createConstant(IMAGE_TYPE, "heif");
251251

252252
/**
253253
* <a href="https://tools.ietf.org/html/rfc3745">JP2K image format</a>.
254254
*
255-
* @since NEXT
255+
* @since 28.1
256256
*/
257257
public static final MediaType JP2K = createConstant(IMAGE_TYPE, "jp2");
258258

0 commit comments

Comments
 (0)