aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2011-06-01 12:24:32 +0200
committerTarek Ziade <tarek@ziade.org>2011-06-01 12:24:32 +0200
commit8d8653a2fb38196fbf1d4dd2bc92ef0baad9c6f2 (patch)
treea526fc2194a5b4b07acb7da5b83a0bc9727b0cc9
parentf21d251e436fb99f1a1b935d42f7b21053b25682 (diff)
downloadexternal_python_setuptools-8d8653a2fb38196fbf1d4dd2bc92ef0baad9c6f2.tar.gz
external_python_setuptools-8d8653a2fb38196fbf1d4dd2bc92ef0baad9c6f2.tar.bz2
external_python_setuptools-8d8653a2fb38196fbf1d4dd2bc92ef0baad9c6f2.zip
starting 0.6.19
--HG-- branch : distribute extra : rebase_source : e4d2913a33c81962f624d9a9c0803e622e8bfd62
-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 3fa013a8..d085b754 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,12 @@ CHANGES
=======
------
+0.6.19
+------
+
+* ADD STUFF HERE
+
+------
0.6.18
------
diff --git a/README.txt b/README.txt
index 2eefab4c..97e9660d 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.18.tar.gz
- $ tar -xzvf distribute-0.6.18.tar.gz
- $ cd distribute-0.6.18
+ $ 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
$ python setup.py install
---------------------------
diff --git a/distribute_setup.py b/distribute_setup.py
index 33dfd81d..bbb6f3c2 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.18"
+DEFAULT_VERSION = "0.6.19"
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
SETUPTOOLS_FAKED_VERSION = "0.6c11"
diff --git a/release.sh b/release.sh
index c7571437..268f4ba7 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.18"
+export VERSION="0.6.19"
# tagging
hg tag $VERSION
diff --git a/setup.py b/setup.py
index 92838b9a..44f773af 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.18"
+VERSION = "0.6.19"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py