diff --git a/CHANGELOG b/CHANGELOG index 8e2d2b2..220e63a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.5.1.1 +- add documentation in tarball +- add a MANIFEST.in + 0.5.1 - SA 0.5.x support. SQLAlchemy < 0.5.1 not supported anymore. - use nose instead of py.test for testing diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..d3d266f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include CHANGELOG +include docs/*.rst +include docs/conf.py diff --git a/setup.py b/setup.py index 8281767..2e9b302 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name = "sqlalchemy-migrate", - version = "0.5.1", + version = "0.5.1.1", packages = find_packages(exclude=['test*']), include_package_data = True, description = "Database schema migration for SQLAlchemy",