From bf0be392ec49dd64f9ddf4a7c154b4a9f59f3583 Mon Sep 17 00:00:00 2001 From: Christophe de Vienne Date: Tue, 25 Oct 2011 12:56:30 +0200 Subject: [PATCH] Completed the change list. version -> 0.2.0 --- doc/changes.rst | 15 +++++++++++++++ wsme/release.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) 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"