0.3.5
- Add support for non-string default field values, examples:
num: Number = 3
bool: Boolean = true
list_num: List[Number] = [3, 4, 5]
list_bool: List[Boolean] = [false, true]
list_str: List[String] = ["one", "two"]
- Fix lists of numbers being saved as
list_num :: "3", "4", "5"
instead oflist_num :: 3, 4, 5
Full Changelog: 0.3.4...0.3.5