From 81067b562cc8abd1b6e93ce751e6e61d60f09ae7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 13 Jun 2010 03:53:46 +0000 Subject: [PATCH] prep for 0.7.1 --- CHANGES.txt | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 3147268..6a98538 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,8 +4,8 @@ Changes Next Release ------------ -Bug Fixes -~~~~~~~~~ +0.7.1 (2010/06/12) +------------------ - Make it possible to use ``colander.null`` as a ``missing`` argument to ``colander.SchemaNode`` for roundtripping purposes. diff --git a/docs/conf.py b/docs/conf.py index 44dad9c..d122949 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.7.0' +version = '0.7.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index c58a347..4928ddc 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = ['iso8601', 'translationstring'] setup(name='colander', - version='0.7.0', + version='0.7.1', description=('A simple schema-based serialization and deserialization ' 'library'), long_description=README + '\n\n' + CHANGES,