Skip to content

Commit

Permalink
Prepare for release 27.0.
Browse files Browse the repository at this point in the history
RELNOTES=n/a

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=217587480
  • Loading branch information
cgdecker committed Oct 18, 2018
1 parent d6a12e4 commit 9704538
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -22,7 +22,7 @@ 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 Java 7 or by any library that wants to be compatible with
either of those. These flavors are specified in the Maven version field as
either `26.0-jre` or `26.0-android`. For more about depending on
either `27.0-jre` or `27.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 @@ -31,19 +31,19 @@ To add a dependency on Guava using Maven, use the following:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>26.0-jre</version>
<version>27.0-jre</version>
<!-- or, for Android: -->
<version>26.0-android</version>
<version>27.0-android</version>
</dependency>
```

To add a dependency using Gradle:

```gradle
dependencies {
compile 'com.google.guava:guava:26.0-jre'
compile 'com.google.guava:guava:27.0-jre'
// or, for Android:
api 'com.google.guava:guava:26.0-android'
api 'com.google.guava:guava:27.0-android'
}
```

Expand Down
2 changes: 1 addition & 1 deletion android/guava/src/com/google/common/collect/Range.java
Expand Up @@ -568,7 +568,7 @@ public Range<C> intersection(Range<C> connectedRange) {
*
* @throws IllegalArgumentException if this range and {@code otherRange} have a nonempty
* intersection
* @since NEXT
* @since 27.0
*/
public Range<C> gap(Range<C> otherRange) {
boolean isThisFirst = this.lowerBound.compareTo(otherRange.lowerBound) < 0;
Expand Down
2 changes: 1 addition & 1 deletion android/guava/src/com/google/common/net/HttpHeaders.java
Expand Up @@ -77,7 +77,7 @@ private HttpHeaders() {}
* The HTTP <a href="https://tools.ietf.org/html/rfc8470">{@code Early-Data}</a> header field
* name.
*
* @since NEXT
* @since 27.0
*/
public static final String EARLY_DATA = "Early-Data";
/** The HTTP {@code Expect} header field name. */
Expand Down
2 changes: 1 addition & 1 deletion android/guava/src/com/google/common/net/MediaType.java
Expand Up @@ -472,7 +472,7 @@ private static MediaType addKnownType(MediaType mediaType) {
* Media type for WASM applications. For more information see <a
* href="https://webassembly.org/">the Web Assembly overview</a>.
*
* @since NEXT
* @since 27.0
*/
public static final MediaType WASM_APPLICATION = createConstant(APPLICATION_TYPE, "wasm");
/**
Expand Down
Expand Up @@ -233,7 +233,7 @@ protected AbstractService() {}
* <p>When this method is called {@link #state()} will return {@link State#STOPPING}, which
* is the external state observable by the caller of {@link #stopAsync}.
*
* @since NEXT
* @since 27.0
*/
@ForOverride
protected void doCancelStart() {}
Expand Down
2 changes: 1 addition & 1 deletion guava/src/com/google/common/collect/Range.java
Expand Up @@ -568,7 +568,7 @@ public Range<C> intersection(Range<C> connectedRange) {
*
* @throws IllegalArgumentException if this range and {@code otherRange} have a nonempty
* intersection
* @since NEXT
* @since 27.0
*/
public Range<C> gap(Range<C> otherRange) {
boolean isThisFirst = this.lowerBound.compareTo(otherRange.lowerBound) < 0;
Expand Down
2 changes: 1 addition & 1 deletion guava/src/com/google/common/net/HttpHeaders.java
Expand Up @@ -77,7 +77,7 @@ private HttpHeaders() {}
* The HTTP <a href="https://tools.ietf.org/html/rfc8470">{@code Early-Data}</a> header field
* name.
*
* @since NEXT
* @since 27.0
*/
public static final String EARLY_DATA = "Early-Data";
/** The HTTP {@code Expect} header field name. */
Expand Down
2 changes: 1 addition & 1 deletion guava/src/com/google/common/net/MediaType.java
Expand Up @@ -472,7 +472,7 @@ private static MediaType addKnownType(MediaType mediaType) {
* Media type for WASM applications. For more information see <a
* href="https://webassembly.org/">the Web Assembly overview</a>.
*
* @since NEXT
* @since 27.0
*/
public static final MediaType WASM_APPLICATION = createConstant(APPLICATION_TYPE, "wasm");
/**
Expand Down
Expand Up @@ -233,7 +233,7 @@ protected AbstractService() {}
* <p>When this method is called {@link #state()} will return {@link State#STOPPING}, which
* is the external state observable by the caller of {@link #stopAsync}.
*
* @since NEXT
* @since 27.0
*/
@ForOverride
protected void doCancelStart() {}
Expand Down

0 comments on commit 9704538

Please sign in to comment.