diff --git a/CHANGES.txt b/CHANGES.txt index eefa1f9..0b9714a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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) ---------------- diff --git a/docs/conf.py b/docs/conf.py index 37570b5..0282844 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ copyright = '2010, Repoze Developers ' # 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 diff --git a/setup.py b/setup.py index 30a64de..9bb46ef 100644 --- a/setup.py +++ b/setup.py @@ -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,