diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rwxr-xr-x | README.txt | 6 | ||||
-rw-r--r-- | distribute_setup.py | 2 | ||||
-rwxr-xr-x | release.sh | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
5 files changed, 12 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 92444002..d59d26ef 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +0.6.4 +----- + + + +----- 0.6.3 ----- @@ -94,8 +94,8 @@ Source installation Download the source tarball, uncompress it, then run the install command:: - $ wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.3.tar.gz - $ tar -xzvf distribute-0.6.3.tar.gz + $ wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.4.tar.gz + $ tar -xzvf distribute-0.6.4.tar.gz $ cd distribute-0.6 $ python setup.py install @@ -167,7 +167,7 @@ Install FAQ installation of Setuptools. The plan is to come with a custom bootstrap.py for zc.buildout for the - 0.6.3 release, together with some small changes on zc.buildout side. + 0.6.4 release, together with some small changes on zc.buildout side. ----------------------------- diff --git a/distribute_setup.py b/distribute_setup.py index b5cce268..e54b0ca0 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.3" +DEFAULT_VERSION = "0.6.4" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/" SETUPTOOLS_PKG_INFO = """\ Metadata-Version: 1.0 @@ -1,5 +1,5 @@ #!/bin/sh -export VERSION="0.6.3" +export VERSION="0.6.4" # creating the releases rm -rf dist @@ -36,7 +36,7 @@ init_path = convert_path('setuptools/command/__init__.py') exec(open(init_path).read(), d) SETUP_COMMANDS = d['__all__'] -VERSION = "0.6.3" +VERSION = "0.6.4" from setuptools import setup, find_packages import sys |