release preparations
3 files changed, 4 insertions(+), 4 deletions(-)

M README.rst
M fabfile.py
M setup.py
M README.rst +1 -1
@@ 242,7 242,7 @@ When done, the following scripts can be 
 Changes
 -------------------------------------------------------------------------------
 
-Version 0.1.1 (in development)
+Version 0.1.1
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 - Improved documentation.

          
M fabfile.py +2 -2
@@ 171,8 171,8 @@ def release(version):
 
     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
 

          
M setup.py +1 -1
@@ 4,7 4,7 @@ import sys, os
 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',