Merge pull request #1895 from google/finish-2.8.7
Update user guide and change log to reflect 2.8.7 release.
This commit is contained in:
commit
f5fcb0f4cb
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,6 +1,16 @@
|
||||
Change Log
|
||||
==========
|
||||
|
||||
## Version 2.8.7
|
||||
|
||||
* Fixed `ISO8601UtilsTest` failing on systems with UTC+X.
|
||||
* Improved javadoc for `JsonStreamParser`.
|
||||
* Updated proguard.cfg (#1693).
|
||||
* Fixed `IllegalStateException` in `JsonTreeWriter` (#1592).
|
||||
* Added `JsonArray.isEmpty()` (#1640).
|
||||
* Added new test cases (#1638).
|
||||
* Fixed OSGi metadata generation to work on JavaSE < 9 (#1603).
|
||||
|
||||
## Version 2.8.6
|
||||
_2019-10-04_ [GitHub Diff](https://github.com/google/gson/compare/gson-parent-2.8.5...gson-parent-2.8.6)
|
||||
* Added static methods `JsonParser.parseString` and `JsonParser.parseReader` and deprecated instance method `JsonParser.parse`
|
||||
|
@ -74,7 +74,7 @@ The Gson instance does not maintain any state while invoking Json operations. So
|
||||
## <a name="TOC-Gson-With-Gradle"></a>Using Gson with Gradle/Android
|
||||
```
|
||||
dependencies {
|
||||
implementation 'com.google.code.gson:gson:2.8.6'
|
||||
implementation 'com.google.code.gson:gson:2.8.7'
|
||||
}
|
||||
```
|
||||
## <a name="TOC-Gson-With-Maven"></a>Using Gson with Maven
|
||||
@ -86,7 +86,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.8.6</version>
|
||||
<version>2.8.7</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
Loading…
Reference in New Issue
Block a user