Prep for 0.6.1.

This commit is contained in:
Chris McDonough
2010-05-04 04:29:53 +00:00
parent 44adcc5f65
commit f61417d1b7
3 changed files with 6 additions and 5 deletions

View File

@@ -1,10 +1,11 @@
Changes
=======
Next release
------------
0.6.1 (2010-05-04)
------------------
- Add a Decimal type (decimal floating point).
- Add a Decimal type (number type which uses ``decimal.Decimal`` as a
deserialization target).
0.6.0 (2010-05-02)
------------------

View File

@@ -52,7 +52,7 @@ copyright = '2010, Repoze Developers <repoze-dev@lists.repoze.org>'
# other places throughout the built documents.
#
# The short X.Y version.
version = '0.6.0'
version = '0.6.1'
# The full version, including alpha/beta/rc tags.
release = version

View File

@@ -24,7 +24,7 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['iso8601', 'translationstring']
setup(name='colander',
version='0.6.0',
version='0.6.1',
description=('A simple schema-based serialization and deserialization '
'library'),
long_description=README + '\n\n' + CHANGES,