Update CHANGELOG.md

This commit is contained in:
Jesse Wilson 2015-10-04 01:30:43 -04:00
parent 25dff9b6ad
commit 1d8f3e56d8
1 changed files with 2 additions and 1 deletions

View File

@ -3,13 +3,14 @@ Change Log
## Version 2.4.0
_RELEASE DATE TBA_
_2015-10-04_
* **Drop `IOException` from `TypeAdapter.toJson()`.** This is a binary-compatible change, but may
cause compiler errors where `IOExceptions` are being caught but no longer thrown. The correct fix
for this problem is to remove the unnecessary `catch` clause.
* New: `Gson.newJsonWriter` method returns configured `JsonWriter` instances.
* New: `@SerializedName` now works with [AutoValues][autovalue] abstract property methods.
* New: `@SerializedName` permits alternate names when deserializing.
* New: `JsonWriter#jsonValue` writes raw JSON values.
* New: APIs to add primitives directly to `JsonArray` instances.
* New: ISO 8601 type adapter. Find this in _extras_.