0.9.2
- Switched to MIT License
- Added typed getter methods to JsonObject. These methods accept a default value that is returned if the member does not exist, e.g.
String name = jsonObject.getString("name", "unknown");
int size = jsonObject.getString("size", -1);