* Added Enum type * Added OneOfValidator * **Breaking change**: All types are now non-nullable instead of possibly returning a default or accepting `None`, you should adapt your code accordingly by using `Nullable()` * Dropped support Python 2
1.7.0
-----
* Fix `List` type raising unrelated errors (or no error at all, when passing a dictionary) when deserializing objects that are not lists.
1.6.1
-----
* Hotfix for 1.6.0: Fix serialization/deserialization error `Schema.serialize(...)` is invoked with kwargs and there are attributes using callables that don't require those kwargs.
1.6.0
-----
* Fix DeprecationWarnings being raised (youtux) * Dropped support for python 2.6 and add declare support for python 3.5, 3.6, 3.7, 3.8
1.5.0
-----
* Allow passing context keyword arguments to deserialize methods (blaise-io)