diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 450a801..df3c495 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,7 @@ Changelog ~~~~~~~~~ +0.2.0a2 (2009-11-11) + * fixed missing files in MANIFEST.in 0.2.0a1 (2009-11-09) * renamed path.getcwd to path.cwd diff --git a/MANIFEST.in b/MANIFEST.in index 20c89fc..d1e628e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,8 @@ include setup.py include setup.cfg +include LICENSE +include *.txt recursive-include doc *.py *.bat Makefile *.rst -recursive-include test *.* \ No newline at end of file +recursive-exclude test *.pyc + diff --git a/scriptine/__init__.py b/scriptine/__init__.py index dae1d3e..b8047a0 100644 --- a/scriptine/__init__.py +++ b/scriptine/__init__.py @@ -1,6 +1,6 @@ from scriptine._path import path from scriptine.command import run -__version__ = '0.2.0a1' +__version__ = '0.2.0a2' -__all__ = ['path', 'run'] \ No newline at end of file +__all__ = ['path', 'run']