From a29f035b8ccaea4a954588bff91a60873dc3191d Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Tue, 19 Jan 2016 10:48:17 -0600 Subject: [PATCH] update changelog for #199 --- CHANGES.rst | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4b96df0..951ca4b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +unreleased +========== + +- ``colander.String`` schema type now supports an optional keyword argument + ``allow_empty`` which, when True, deserializes an empty string to an + empty string. When False (default), an empty string deserializes to + ``colander.null``. This allows for a node to be explicitly required, but + allow an empty ('') value to be provided. + https://github.com/Pylons/colander/issues/199 + 1.2 (2016-01-18) ================ @@ -60,14 +70,6 @@ Features - Add ``normalize`` option to ``Decimal``, stripping the rightmost trailing zeros. -- ``colander.String`` schema type now supports an optional keyword argument - ``allow_empty`` which, when True, deserializes an empty string to an - empty string. When False (default), an empty string deserializes to - ``colander.null``. This allows for a node to be explicitly required, but - allow an empty ('') value to be provided. - https://github.com/Pylons/colander/issues/199 - - Bug Fixes ---------