Prep for 0.2
This commit is contained in:
30
CHANGES.txt
30
CHANGES.txt
@@ -1,6 +1,36 @@
|
|||||||
Changes
|
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)
|
0.1 (2010-03-14)
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@@ -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.1'
|
version = '0.2'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
|
|||||||
requires = []
|
requires = []
|
||||||
|
|
||||||
setup(name='colander',
|
setup(name='colander',
|
||||||
version='0.1',
|
version='0.2',
|
||||||
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