diff --git a/doc/changes.rst b/doc/changes.rst index 2bdc214..3de252a 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -1,6 +1,21 @@ Changes ======= +0.2.0 (next) +------------ + +* Added batch-calls abilities. + +* Implement batch-call in the ExtDirect protocol. + +* Introduce a :class:`UnsetType` and a :data:`Unset` constant + so that non-mandatory attributes can remain unset (which is + different from null). + +* Fix inspection of complex types with inheritance. + +* Fix inspection of self-referencing complex types. + 0.1.1 (2011-10-20) ------------------ diff --git a/wsme/release.py b/wsme/release.py index 073ca8b..15a99a7 100644 --- a/wsme/release.py +++ b/wsme/release.py @@ -1,5 +1,5 @@ name = "WSME" -version = "0.1.1" +version = "0.2.0" description = "Web Services Made Easy"