aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjwilson <jwilson@squareup.com>2015-09-26 19:43:55 -0400
committerjwilson <jwilson@squareup.com>2015-09-26 19:43:55 -0400
commit40ba05529dc8b40153622399c3da4272df838ce3 (patch)
tree1c3e22dd6b35922b27998ed0671dfa505d83da35
parentb82e1b09319550bd7b377e5c766f104721e777f2 (diff)
downloadandroid_external_gson-40ba05529dc8b40153622399c3da4272df838ce3.tar.gz
android_external_gson-40ba05529dc8b40153622399c3da4272df838ce3.tar.bz2
android_external_gson-40ba05529dc8b40153622399c3da4272df838ce3.zip
Add a draft of a changelog.
-rw-r--r--CHANGELOG.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 00000000..61e174a1
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,20 @@
+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][autovalue’s] 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: Fix `FieldNamingPolicy` issues when running in an environment with a Turkish locale.
+
+
+
+ [autovalue]: https://github.com/google/auto/tree/master/value