Update docs for Gson 2.6.1.

This commit is contained in:
jwilson 2016-02-11 23:17:00 -05:00
parent 796b4ca26d
commit 0ae177fefb
3 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,14 @@
Change Log
==========
## Version 2.6.1
_2016-02-11_
* Fix: The 2.6 release targeted Java 1.7, but we intend to target Java 1.6. The
2.6.1 release is identical to 2.6, but it targets Java 1.6.
## Version 2.6
_2016-02-11_

View File

@ -15,7 +15,7 @@ There are a few open-source projects that can convert Java objects to JSON. Howe
* Support arbitrarily complex objects (with deep inheritance hierarchies and extensive use of generic types)
*Gson Downloads*
* [Gson 2.5 Download](http://search.maven.org/#artifactdetails%7Ccom.google.code.gson%7Cgson%7C2.5%7Cjar) downloads at Maven Central
* [Gson 2.6.1 Download](http://search.maven.org/#artifactdetails%7Ccom.google.code.gson%7Cgson%7C2.6.1%7Cjar) downloads at Maven Central
*Gson Documentation*
* Gson [API](http://google.github.io/gson/apidocs/): Javadocs for the current Gson release

View File

@ -79,7 +79,7 @@ To use Gson with Maven2/3, you can use the Gson version available in Maven Centr
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.5</version>
<version>2.6.1</version>
<scope>compile</scope>
</dependency>
</dependencies>