prep for 0.7.0
This commit is contained in:
17
CHANGES.txt
17
CHANGES.txt
@@ -1,8 +1,14 @@
|
|||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
Next release
|
0.7.0
|
||||||
------------
|
-----
|
||||||
|
|
||||||
|
A release centered around normalizing the treatment of default and
|
||||||
|
missing values.
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
~~~~~~~~~
|
||||||
|
|
||||||
- Allow ``colander.Regex`` validator to accept a pattern object
|
- Allow ``colander.Regex`` validator to accept a pattern object
|
||||||
instead of just a string.
|
instead of just a string.
|
||||||
@@ -17,6 +23,9 @@ Next release
|
|||||||
- Raise a ``TypeError`` when bogus keyword arguments are passed to
|
- Raise a ``TypeError`` when bogus keyword arguments are passed to
|
||||||
``colander.SchemaNode``.
|
``colander.SchemaNode``.
|
||||||
|
|
||||||
|
Backwards Incompatiblities / New Features
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
- ``missing`` constructor arg to SchemaNode: signifies
|
- ``missing`` constructor arg to SchemaNode: signifies
|
||||||
*deserialization* default, disambiguated from ``default`` which acted
|
*deserialization* default, disambiguated from ``default`` which acted
|
||||||
as both serialization and deserialization default previously.
|
as both serialization and deserialization default previously.
|
||||||
@@ -29,7 +38,7 @@ Next release
|
|||||||
instead).
|
instead).
|
||||||
|
|
||||||
- New concept: ``colander.null`` input to serialization and
|
- New concept: ``colander.null`` input to serialization and
|
||||||
deserialization. Use of ``colander.null` normalizes serialization
|
deserialization. Use of ``colander.null`` normalizes serialization
|
||||||
and deserialization default handling.
|
and deserialization default handling.
|
||||||
|
|
||||||
Changes necessitated / made possible by ``colander.null`` addition:
|
Changes necessitated / made possible by ``colander.null`` addition:
|
||||||
@@ -92,7 +101,7 @@ Next release
|
|||||||
older behavior back. This is in support of Deform.
|
older behavior back. This is in support of Deform.
|
||||||
|
|
||||||
- The default ``err_template`` value attached to the ``colander.Date``
|
- The default ``err_template`` value attached to the ``colander.Date``
|
||||||
and ``colander.Datetime` types was changed. It is now simply
|
and ``colander.Datetime`` types was changed. It is now simply
|
||||||
``Invalid date`` instead of ``_('${val} cannot be parsed as an
|
``Invalid date`` instead of ``_('${val} cannot be parsed as an
|
||||||
iso8601 date: ${err}')``. This is in support of Deform.
|
iso8601 date: ${err}')``. This is in support of Deform.
|
||||||
|
|
||||||
|
|||||||
1
docs/changes.rst
Normal file
1
docs/changes.rst
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.. include:: ../CHANGES.txt
|
||||||
@@ -52,7 +52,7 @@ copyright = '2010, Repoze Developers <repoze-dev@lists.repoze.org>'
|
|||||||
# other places throughout the built documents.
|
# other places throughout the built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.6.2'
|
version = '0.7.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ internationalizable.
|
|||||||
interfaces.rst
|
interfaces.rst
|
||||||
api.rst
|
api.rst
|
||||||
glossary.rst
|
glossary.rst
|
||||||
|
changes.rst
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
------------------
|
------------------
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
|
|||||||
requires = ['iso8601', 'translationstring']
|
requires = ['iso8601', 'translationstring']
|
||||||
|
|
||||||
setup(name='colander',
|
setup(name='colander',
|
||||||
version='0.6.2',
|
version='0.7.0',
|
||||||
description=('A simple schema-based serialization and deserialization '
|
description=('A simple schema-based serialization and deserialization '
|
||||||
'library'),
|
'library'),
|
||||||
long_description=README + '\n\n' + CHANGES,
|
long_description=README + '\n\n' + CHANGES,
|
||||||
|
|||||||
Reference in New Issue
Block a user