From a0297c82feaf34ed13d8984fba405aeaa804c97f Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 2 Dec 2010 16:26:39 +0000 Subject: [PATCH] prep for 0.9.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 694d8f9..d4f681e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,8 +1,8 @@ Changes ======= -Next release ------------- +0.9.1 (2010-12-02) +------------------ - When ``colander.null`` was unpickled, the reference created during unpickling was *not* a reference to the singleton but rather a new instance diff --git a/docs/conf.py b/docs/conf.py index 31d2a81..d435451 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.9' +version = '0.9.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 8c00613..c24b125 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.9', + version='0.9.1', description=('A simple schema-based serialization and deserialization ' 'library'), long_description=README + '\n\n' + CHANGES,