# HG changeset patch # User Oben Sonne # Date 1317827781 -7200 # Wed Oct 05 17:16:21 2011 +0200 # Node ID 92c3bae6faee828156640693edf96a0b4fc7dda4 # Parent b0220790c39c6238fd7732002875a1eb6f2b8bfd release preparations diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -242,7 +242,7 @@ Changes ------------------------------------------------------------------------------- -Version 0.1.1 (in development) +Version 0.1.1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Improved documentation. diff --git a/fabfile.py b/fabfile.py --- a/fabfile.py +++ b/fabfile.py @@ -171,8 +171,8 @@ release_check(version) - local("rm -r %s" % os.path.join(ROOT, "build")) - local("rm -r %s" % os.path.join(ROOT, "dist")) + local("rm -rf %s" % os.path.join(ROOT, "build")) + local("rm -rf %s" % os.path.join(ROOT, "dist")) local("bin/buildout setup %s clean build sdist" % ROOT) # test build diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() -version = '0.1' +version = '0.1.1' install_requires = [ 'markdown', 'argparse',