Prep for 0.2

This commit is contained in:
Chris McDonough
2010-03-23 05:04:10 +00:00
parent e15a46eac2
commit 380a88a7e0
3 changed files with 32 additions and 2 deletions

View File

@@ -1,6 +1,36 @@
Changes
=======
0.2 (2010-03-23)
----------------
- Make nodetype overrideable.
- Add __getitem__ to SchemaNode.
- Fix OneOf message.
- Capitalize node titles.
- Deal with empty strings in String, Boolean, and Float types.
- Introduce description; make title the same as name.
- Remove copy method from schemanode.
- Allow schema nodes to have titles.
- The term "structure" is too overloaded to use for schema purposes:
structure -> schema node.
- Make Sequence more like Tuple and Mapping (it uses a substructure
rather than a structure parameter to denote its type).
- Add __repr__ and copy methods to structure.
- Add accept_scalar flag to Sequence.
0.1 (2010-03-14)
----------------

View File

@@ -52,7 +52,7 @@ copyright = '2010, Repoze Developers <repoze-dev@lists.repoze.org>'
# other places throughout the built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = version

View File

@@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = []
setup(name='colander',
version='0.1',
version='0.2',
description=('A simple schema-based serialization and deserialization '
'library'),
long_description=README + '\n\n' + CHANGES,