From e46e9743081ec738c970931c8dbfa3de8a8ebff7 Mon Sep 17 00:00:00 2001 From: Tarek Ziade Date: Thu, 2 Jun 2011 02:12:54 +0200 Subject: starting 0.6.20 --HG-- branch : distribute extra : rebase_source : f5cf2fdcae5a8895f0218fddd57e0496d302d919 --- CHANGES.txt | 7 ++++++- README.txt | 6 +++--- distribute_setup.py | 2 +- release.sh | 2 +- setup.py | 2 +- 5 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 5f92af2d..aa3eb476 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,13 +2,18 @@ CHANGES ======= +------ +0.6.20 +------ + +* ADD STUFF HERE + ------ 0.6.19 ------ * Issue 206: AttributeError: 'HTTPMessage' object has no attribute 'getheaders' - ------ 0.6.18 ------ diff --git a/README.txt b/README.txt index 97e9660d..f562d628 100755 --- a/README.txt +++ b/README.txt @@ -99,9 +99,9 @@ Source installation Download the source tarball, uncompress it, then run the install command:: - $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.19.tar.gz - $ tar -xzvf distribute-0.6.19.tar.gz - $ cd distribute-0.6.19 + $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.20.tar.gz + $ tar -xzvf distribute-0.6.20.tar.gz + $ cd distribute-0.6.20 $ python setup.py install --------------------------- diff --git a/distribute_setup.py b/distribute_setup.py index bbb6f3c2..22c2d65f 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -46,7 +46,7 @@ except ImportError: args = [quote(arg) for arg in args] return os.spawnl(os.P_WAIT, sys.executable, *args) == 0 -DEFAULT_VERSION = "0.6.19" +DEFAULT_VERSION = "0.6.20" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/" SETUPTOOLS_FAKED_VERSION = "0.6c11" diff --git a/release.sh b/release.sh index 268f4ba7..7f791691 100755 --- a/release.sh +++ b/release.sh @@ -1,5 +1,5 @@ #!/bin/sh -export VERSION="0.6.19" +export VERSION="0.6.20" # tagging hg tag $VERSION diff --git a/setup.py b/setup.py index 44f773af..bfb62406 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ init_path = convert_path('setuptools/command/__init__.py') exec(open(init_path).read(), d) SETUP_COMMANDS = d['__all__'] -VERSION = "0.6.19" +VERSION = "0.6.20" from setuptools import setup, find_packages from setuptools.command.build_py import build_py as _build_py -- cgit v1.2.1