Skip to content

Commit

Permalink
Prepare for release 23.6.
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=179736077
  • Loading branch information
cgdecker committed Dec 20, 2017
1 parent a37ccd1 commit 5cb62f8
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -18,30 +18,30 @@ Guava comes in two flavors.

## Latest release

The most recent release is [Guava 23.5][current release], released 2017-11-22.
The most recent release is [Guava 23.6][current release], released 2017-12-20.

The Maven group ID is `com.google.guava`, and the artifact ID is `guava`. Use
version `23.5-jre` for the JRE flavor, or `23.5-android` for the Android flavor.
version `23.6-jre` for the JRE flavor, or `23.6-android` for the Android flavor.

To add a dependency on Guava using Maven, use the following:

```xml
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.5-jre</version>
<version>23.6-jre</version>
<!-- or, for Android: -->
<version>23.5-android</version>
<version>23.6-android</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'com.google.guava:guava:23.5-jre'
compile 'com.google.guava:guava:23.6-jre'
// or, for Android:
compile 'com.google.guava:guava:23.5-android'
compile 'com.google.guava:guava:23.6-android'
}
```

Expand Down Expand Up @@ -96,7 +96,7 @@ Linux. Some features, especially in `com.google.common.io`, may not work
correctly in other environments. For the Android flavor, our unit tests run on
API level 15 (Ice Cream Sandwich).

[current release]: https://github.com/google/guava/releases/tag/v23.5
[current release]: https://github.com/google/guava/releases/tag/v23.6
[guava-snapshot-api-docs]: http://google.github.io/guava/releases/snapshot-jre/api/docs/
[guava-snapshot-api-diffs]: http://google.github.io/guava/releases/snapshot-jre/api/diffs/
[Guava Explained]: https://github.com/google/guava/wiki/Home
Expand Down
2 changes: 1 addition & 1 deletion android/guava/src/com/google/common/net/HttpHeaders.java
Expand Up @@ -259,7 +259,7 @@ private ReferrerPolicyValues() {}
* The HTTP <a href="https://www.w3.org/TR/server-timing/">{@code Server-Timing}</a> header field
* name.
*
* @since NEXT
* @since 23.6
*/
public static final String SERVER_TIMING = "Server-Timing";
/**
Expand Down
Expand Up @@ -1017,7 +1017,7 @@ public <C> ListenableFuture<C> call(Callable<C> combiner) {
*
* <p>Canceling this Future will attempt to cancel all the component futures.
*
* @since NEXT
* @since 23.6
*/
public ListenableFuture<?> run(final Runnable combiner, Executor executor) {
return call(
Expand Down
Expand Up @@ -98,7 +98,7 @@ public static boolean awaitUninterruptibly(CountDownLatch latch, long timeout, T
* Invokes {@code condition.}{@link Condition#await(long, TimeUnit) await(timeout, unit)}
* uninterruptibly.
*
* @since NEXT
* @since 23.6
*/
@GwtIncompatible // concurrency
public static boolean awaitUninterruptibly(Condition condition, long timeout, TimeUnit unit) {
Expand Down
2 changes: 1 addition & 1 deletion guava/src/com/google/common/net/HttpHeaders.java
Expand Up @@ -259,7 +259,7 @@ private ReferrerPolicyValues() {}
* The HTTP <a href="https://www.w3.org/TR/server-timing/">{@code Server-Timing}</a> header field
* name.
*
* @since NEXT
* @since 23.6
*/
public static final String SERVER_TIMING = "Server-Timing";
/**
Expand Down
2 changes: 1 addition & 1 deletion guava/src/com/google/common/util/concurrent/Futures.java
Expand Up @@ -1017,7 +1017,7 @@ public <C> ListenableFuture<C> call(Callable<C> combiner) {
*
* <p>Canceling this Future will attempt to cancel all the component futures.
*
* @since NEXT
* @since 23.6
*/
public ListenableFuture<?> run(final Runnable combiner, Executor executor) {
return call(
Expand Down
Expand Up @@ -98,7 +98,7 @@ public static boolean awaitUninterruptibly(CountDownLatch latch, long timeout, T
* Invokes {@code condition.}{@link Condition#await(long, TimeUnit) await(timeout, unit)}
* uninterruptibly.
*
* @since NEXT
* @since 23.6
*/
@GwtIncompatible // concurrency
public static boolean awaitUninterruptibly(Condition condition, long timeout, TimeUnit unit) {
Expand Down

0 comments on commit 5cb62f8

Please sign in to comment.