From 036a108bb1fe2635d89bbb16111f56eeb9e0f2e8 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 31 Mar 2010 18:33:51 +0000 Subject: [PATCH] Prep for 0.5. --- CHANGES.txt | 6 ++++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 3efcdbe..152e38d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ Changes ======= +0.5 (2010-03-31) +---------------- + +- 0.4 was mispackaged (CHANGES.txt missing); no code changes from 0.4 + however. + 0.4 (2010-03-30) ---------------- diff --git a/docs/conf.py b/docs/conf.py index f9f6a0a..edf3046 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.4' +version = '0.5' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index aab3962..f6a470c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = ['iso8601'] setup(name='colander', - version='0.4', + version='0.5', description=('A simple schema-based serialization and deserialization ' 'library'), long_description=README + '\n\n' + CHANGES,