Updated changelog for 0.9.0.

This commit is contained in:
jwilson
2015-06-16 07:55:46 -04:00
parent c9b2dbe395
commit c6f030ba36

View File

@@ -1,10 +1,16 @@
Change Log
==========
## Version 0.1.0
## Version 0.9.0
_In Development_
* Initial code creation.
* Imported JsonReader and JsonWriter from Gson.
_2015-06-16_
* Databinding for primitive types, strings, enums, arrays, collections, and maps.
* Databinding for plain old Java objects.
* [JSONPath](http://goessner.net/articles/JsonPath/) support for both `JsonReader` and
`JsonWriter`.
* Throw `JsonDataException` when theres a data binding problem.
* Adapter methods: `@ToJson` and `@FromJson`.
* Qualifier annotations: `@JsonQualifier` to permit different type adapters for the same Java type.
* Imported code from Gson: `JsonReader`, `JsonWriter`. Also some internal classes:
`LinkedHashTreeMap` for hash-collision avoidance and `Types` for typesafe databinding.