start next development iteration

This commit is contained in:
Jan Dittberner 2011-05-27 22:58:37 +02:00
parent ae4dafc702
commit 7681155af7
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,12 @@
0.7.2 (YYYY-MM-DD)
---------------------------
Features
******************
Fixed Bugs
******************
0.7.1 (2011-05-27)
---------------------------

View File

@ -54,9 +54,9 @@ copyright = u'2011, Evan Rosson, Jan Dittberner, Domen Kožar, Chris Withers'
# built documents.
#
# The short X.Y version.
version = '0.7.1'
version = '0.7.2'
# The full version, including alpha/beta/rc tags.
release = '0.7.1'
release = '0.7.2.dev'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -8,4 +8,4 @@
from migrate.versioning import *
from migrate.changeset import *
__version__ = '0.7.1'
__version__ = '0.7.2.dev'

View File

@ -15,7 +15,7 @@ readme_file = open(os.path.join(os.path.dirname(os.path.abspath(__file__)),
setup(
name = "sqlalchemy-migrate",
version = "0.7.1",
version = "0.7.2",
packages = find_packages(exclude=["migrate.tests*"]),
include_package_data = True,
description = "Database schema migration for SQLAlchemy",