From 2e28635b0b412fd921ec5245ad30987dfefe98e3 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Fri, 27 May 2011 14:29:15 +0200 Subject: [PATCH] start next development iteration - update version numbers in setup.py and docs/conf.py - exclude docs/_build recursively in MANIFEST.in - update docs/changelog.rst --- MANIFEST.in | 1 + docs/changelog.rst | 12 ++++++++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index f1910ec..0f1c471 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,3 +4,4 @@ recursive-include migrate * recursive-include tests * global-exclude *pyc exclude .hgtags +recursive-exclude docs/_build * diff --git a/docs/changelog.rst b/docs/changelog.rst index f3626cf..218fd1d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,3 +1,15 @@ +0.7.1 (YYYY-MM-DD) +--------------------------- + +Features +****************** + +Fixed Bugs +****************** + +- docs/_build is excluded from source tarball builds + + 0.7 (2011-05-27) --------------------------- diff --git a/docs/conf.py b/docs/conf.py index 957144c..18cc7b7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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' +version = '0.7.1' # The full version, including alpha/beta/rc tags. -release = '0.7' +release = '0.7.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index a76c243..5e615d4 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ readme_file = open(os.path.join(os.path.dirname(os.path.abspath(__file__)), setup( name = "sqlalchemy-migrate", - version = "0.7", + version = "0.7.1", packages = find_packages(exclude=["migrate.tests*"]), include_package_data = True, description = "Database schema migration for SQLAlchemy",