update changelog for #199

This commit is contained in:
Michael Merickel
2016-01-19 10:48:17 -06:00
parent de1a40d8dd
commit a29f035b8c

View File

@@ -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
---------