aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt6
-rwxr-xr-xREADME.txt6
-rw-r--r--distribute_setup.py2
-rwxr-xr-xrelease.sh2
-rwxr-xr-xsetup.py2
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
-----
diff --git a/README.txt b/README.txt
index a8d1a85e..ef089646 100755
--- a/README.txt
+++ b/README.txt
@@ -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
diff --git a/release.sh b/release.sh
index 467a1c24..555499ef 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.3"
+export VERSION="0.6.4"
# creating the releases
rm -rf dist
diff --git a/setup.py b/setup.py
index 04f81ca8..7f6cbdf6 100755
--- a/setup.py
+++ b/setup.py
@@ -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