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
This commit is contained in:
parent
1446011168
commit
2e28635b0b
@ -4,3 +4,4 @@ recursive-include migrate *
|
|||||||
recursive-include tests *
|
recursive-include tests *
|
||||||
global-exclude *pyc
|
global-exclude *pyc
|
||||||
exclude .hgtags
|
exclude .hgtags
|
||||||
|
recursive-exclude docs/_build *
|
||||||
|
@ -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)
|
0.7 (2011-05-27)
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
@ -54,9 +54,9 @@ copyright = u'2011, Evan Rosson, Jan Dittberner, Domen Kožar, Chris Withers'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.7'
|
version = '0.7.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ readme_file = open(os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "sqlalchemy-migrate",
|
name = "sqlalchemy-migrate",
|
||||||
version = "0.7",
|
version = "0.7.1",
|
||||||
packages = find_packages(exclude=["migrate.tests*"]),
|
packages = find_packages(exclude=["migrate.tests*"]),
|
||||||
include_package_data = True,
|
include_package_data = True,
|
||||||
description = "Database schema migration for SQLAlchemy",
|
description = "Database schema migration for SQLAlchemy",
|
||||||
|
Loading…
Reference in New Issue
Block a user