From 3f6796f3bbcd1fed0ba66d4160b87b7383f18d3a Mon Sep 17 00:00:00 2001 From: Christophe de Vienne Date: Mon, 28 Nov 2011 22:35:19 +0100 Subject: [PATCH] Preparing next release --- doc/changes.rst | 26 ++++++++++++++++++++++++++ wsme/release.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/doc/changes.rst b/doc/changes.rst index 18339ff..7e76a3c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -1,6 +1,32 @@ Changes ======= +next +---- + +* :class:`Unset` is now imported in the wsme module + +* Attributes of complex types can now have a different name in + the public api and in the implementation. + +* Complex arguments can now be sent as GET/POST params in the rest + protocols. + +* The restjson protocol do not nest the results in an object anymore. + +* Fixes + + * Fix array attributes validation. + + * Fix date|time parsing errors. + + * Fix Unset values validation. + + * Fix registering of complex types inheriting form already + registered complex types. + + * Fix user types, str and None values encoding/decoding. + 0.2.0 (2011-10-29) ------------------ diff --git a/wsme/release.py b/wsme/release.py index 15a99a7..6f080fd 100644 --- a/wsme/release.py +++ b/wsme/release.py @@ -1,5 +1,5 @@ name = "WSME" -version = "0.2.0" +version = "0.3b1" description = "Web Services Made Easy"