aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2011-08-20 12:02:34 +0200
committerTarek Ziade <tarek@ziade.org>2011-08-20 12:02:34 +0200
commitb11523cfc567b2be5d0a56b954541d747bced9fe (patch)
treef00fb94a0365167bd2689feaaf8e407e88b259fe
parentaad36d610b0d3b9778e1fe53fd3a1aefe5da2e71 (diff)
downloadexternal_python_setuptools-b11523cfc567b2be5d0a56b954541d747bced9fe.tar.gz
external_python_setuptools-b11523cfc567b2be5d0a56b954541d747bced9fe.tar.bz2
external_python_setuptools-b11523cfc567b2be5d0a56b954541d747bced9fe.zip
starting 0.6.22 dev
--HG-- branch : distribute extra : rebase_source : 14a38f62c8faf493b64102b7e21244048edea5be
-rw-r--r--CHANGES.txt6
-rwxr-xr-xREADME.txt6
-rw-r--r--distribute.egg-info/entry_points.txt2
-rw-r--r--distribute_setup.py2
-rwxr-xr-xrelease.sh2
-rwxr-xr-xsetup.py2
6 files changed, 13 insertions, 7 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 9d2b4f54..3f13a3f6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,12 @@ CHANGES
=======
------
+0.6.22
+------
+
+* ADD STUFF HERE
+
+------
0.6.21
------
diff --git a/README.txt b/README.txt
index 3ce7df6e..8faa59b4 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.21.tar.gz
- $ tar -xzvf distribute-0.6.21.tar.gz
- $ cd distribute-0.6.21
+ $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.22.tar.gz
+ $ tar -xzvf distribute-0.6.22.tar.gz
+ $ cd distribute-0.6.22
$ python setup.py install
---------------------------
diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt
index 9fd41758..1c9f123d 100644
--- a/distribute.egg-info/entry_points.txt
+++ b/distribute.egg-info/entry_points.txt
@@ -32,7 +32,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete
[console_scripts]
easy_install = setuptools.command.easy_install:main
-easy_install-2.7 = setuptools.command.easy_install:main
+easy_install-2.6 = setuptools.command.easy_install:main
[setuptools.file_finders]
svn_cvs = setuptools.command.sdist:_default_revctrl
diff --git a/distribute_setup.py b/distribute_setup.py
index 5a95c927..2ee0f124 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.21"
+DEFAULT_VERSION = "0.6.22"
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
SETUPTOOLS_FAKED_VERSION = "0.6c11"
diff --git a/release.sh b/release.sh
index 667fd5fe..0da18862 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.21"
+export VERSION="0.6.22"
# tagging
hg tag $VERSION
diff --git a/setup.py b/setup.py
index 2982fcf0..3e9754c7 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.21"
+VERSION = "0.6.22"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py