diff --git a/CHANGELOG.md b/CHANGELOG.md index f48e126b..98aa3ab0 100644 --- a/CHANGELOG.md +++ b/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` diff --git a/UserGuide.md b/UserGuide.md index ff9f48c3..22d4799d 100644 --- a/UserGuide.md +++ b/UserGuide.md @@ -74,7 +74,7 @@ The Gson instance does not maintain any state while invoking Json operations. So ## Using Gson with Gradle/Android ``` dependencies { - implementation 'com.google.code.gson:gson:2.8.6' + implementation 'com.google.code.gson:gson:2.8.7' } ``` ## Using Gson with Maven @@ -86,7 +86,7 @@ To use Gson with Maven2/3, you can use the Gson version available in Maven Centr com.google.code.gson gson - 2.8.6 + 2.8.7 compile