From 54aadac41386f8460c1bfa2d74aeda93d7fb14ac Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 9 Apr 2010 23:35:55 +0000 Subject: [PATCH] Prep for 0.5.2. --- 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 7ca076c..78844e1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,8 +1,8 @@ Changes ======= -Next release ------------- +0.5.2 (2010-04-09) +------------------ - Add Email and Regex validators (courtesy Steve Howe). diff --git a/docs/conf.py b/docs/conf.py index 42789bc..a7906cb 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.5.1' +version = '0.5.2' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index a5c6aca..d0069b9 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.5.1', + version='0.5.2', description=('A simple schema-based serialization and deserialization ' 'library'), long_description=README + '\n\n' + CHANGES,