aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 00000000..86efd6c7
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,19 @@
+Change Log
+==========
+
+## Version 2.4.0
+
+_RELEASE DATE TBA_
+
+ * **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 [AutoValue’s][autovalue] abstract property methods.
+ * 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_.
+ * Fix: `FieldNamingPolicy` now works properly when running on a device with a Turkish locale.
+
+ [autovalue]: https://github.com/google/auto/tree/master/value
+