Skip to content

Commit

Permalink
Prepare for release 23.4.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=175016465
  • Loading branch information
cpovirk committed Nov 9, 2017
1 parent 9dd731d commit 3ccb130
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,30 @@ Guava comes in two flavors.

## Latest release

The most recent release is [Guava 23.3][current release], released 2017-10-26.
The most recent release is [Guava 23.4][current release], released 2017-11-08.

The Maven group ID is `com.google.guava`, and the artifact ID is `guava`. Use
version `23.3-jre` for the JRE flavor, or `23.3-android` for the Android flavor.
version `23.4-jre` for the JRE flavor, or `23.4-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.3-jre</version>
<version>23.4-jre</version>
<!-- or, for Android: -->
<version>23.3-android</version>
<version>23.4-android</version>
</dependency>
```

To add a dependency using Gradle:

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

Expand Down Expand Up @@ -94,7 +94,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.3
[current release]: https://github.com/google/guava/releases/tag/v23.4
[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
4 changes: 2 additions & 2 deletions android/guava/src/com/google/common/net/HttpHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ private HttpHeaders() {}
* The HTTP <a href="https://www.w3.org/TR/referrer-policy/">{@code Referrer-Policy}</a> header
* field name.
*
* @since NEXT
* @since 23.4
*/
public static final String REFERRER_POLICY = "Referrer-Policy";

/**
* Values for the <a href="https://www.w3.org/TR/referrer-policy/">{@code Referrer-Policy}</a>
* header.
*
* @since NEXT
* @since 23.4
*/
public static final class ReferrerPolicyValues {
private ReferrerPolicyValues() {}
Expand Down
4 changes: 2 additions & 2 deletions guava/src/com/google/common/net/HttpHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ private HttpHeaders() {}
* The HTTP <a href="https://www.w3.org/TR/referrer-policy/">{@code Referrer-Policy}</a> header
* field name.
*
* @since NEXT
* @since 23.4
*/
public static final String REFERRER_POLICY = "Referrer-Policy";

/**
* Values for the <a href="https://www.w3.org/TR/referrer-policy/">{@code Referrer-Policy}</a>
* header.
*
* @since NEXT
* @since 23.4
*/
public static final class ReferrerPolicyValues {
private ReferrerPolicyValues() {}
Expand Down

0 comments on commit 3ccb130

Please sign in to comment.