diff --git a/CHANGELOG.md b/CHANGELOG.md index 98aa3ab0de..4f58bb676e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +## Version 2.8.8 + +* Fixed issue with recursive types (#1390). +* Better behaviour with Java 9+ and `Unsafe` if there is a security manager (#1712). +* `EnumTypeAdapter` now works better when ProGuard has obfuscated enum fields (#1495). + ## Version 2.8.7 * Fixed `ISO8601UtilsTest` failing on systems with UTC+X. diff --git a/README.md b/README.md index 22ffdae567..7a003fbe2a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ There are a few open-source projects that can convert Java objects to JSON. Howe Gradle: ```gradle dependencies { - implementation 'com.google.code.gson:gson:2.8.7' + implementation 'com.google.code.gson:gson:2.8.8' } ``` @@ -26,7 +26,7 @@ Maven: com.google.code.gson gson - 2.8.7 + 2.8.8 ``` diff --git a/UserGuide.md b/UserGuide.md index 22d4799d23..5fae53c46d 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.7' + implementation 'com.google.code.gson:gson:2.8.8' } ``` ## 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.7 + 2.8.8 compile