update CHANGELOG, set version to 0.5.2

This commit is contained in:
jan.dittberner 2009-02-18 20:20:40 +00:00
parent 5ecec7c680
commit 1af6847bbe
3 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,8 @@
0.5.1.3 0.5.2
- move sphinx and nose dependencies to extras_require and tests_require - move sphinx and nose dependencies to extras_require and tests_require
- integrate patch for Issue 36 by Kumar McMillan - integrate patch for Issue 36 by Kumar McMillan
- fix unit tests
- mark ALTER TABLE ADD COLUMN with FOREIGN KEY as not supported by SQLite
0.5.1.2 0.5.1.2
- corrected build - corrected build

View File

@ -51,9 +51,9 @@ copyright = u'2009, Evan Rosson, Jan Dittberner'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.5.1' version = '0.5.2'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.5.1.3' release = '0.5.2'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -16,7 +16,7 @@ test_requirements = ['nose >= 0.10']
setup( setup(
name = "sqlalchemy-migrate", name = "sqlalchemy-migrate",
version = "0.5.1.3", version = "0.5.2",
packages = find_packages(exclude=['test*']), packages = find_packages(exclude=['test*']),
include_package_data = True, include_package_data = True,
description = "Database schema migration for SQLAlchemy", description = "Database schema migration for SQLAlchemy",