aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguyroz <none@none>2011-09-22 18:28:31 +0300
committerguyroz <none@none>2011-09-22 18:28:31 +0300
commitea5a0098d408c1390a392d772b21b378a3880c22 (patch)
tree15dcbb1be4e9de59145bcfa534afd61623cdd4a0
parent9806553a0ad3bb86da844606fbef832d5fccd106 (diff)
downloadexternal_python_setuptools-ea5a0098d408c1390a392d772b21b378a3880c22.tar.gz
external_python_setuptools-ea5a0098d408c1390a392d772b21b378a3880c22.tar.bz2
external_python_setuptools-ea5a0098d408c1390a392d772b21b378a3880c22.zip
bumped revision
--HG-- branch : distribute extra : rebase_source : 830f7186c8f3c26e86eac1e4287f0545e23a2744
-rw-r--r--CHANGES.txt15
-rw-r--r--distribute_setup.py2
-rwxr-xr-xrelease.sh2
-rwxr-xr-xsetup.py2
4 files changed, 18 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index fe529fb3..855447a7 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,21 @@ CHANGES
=======
------
+0.6.23
+------
+
+* Issue #244: Fixed a test
+* Issue #243: Fixed a test
+* Issue #239: Fixed a test
+* Issue #240: Fixed a test
+* Issue #241: Fixed a test
+* Issue #237: Fixed a test
+* Issue #238: easy_install now uses 64bit executable wrappers on 64bit Python
+* Issue #208: Fixed parsed_versions, it now honors post-releases as noted in the documentation
+* Issue #207: Windows cli and gui wrappers pass CTRL-C to child python process
+* Issue #227: easy_install now passe its arguments to setup.py bdist_egg
+
+------
0.6.22
------
diff --git a/distribute_setup.py b/distribute_setup.py
index 2ee0f124..a1628449 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.22"
+DEFAULT_VERSION = "0.6.23"
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
SETUPTOOLS_FAKED_VERSION = "0.6c11"
diff --git a/release.sh b/release.sh
index 0da18862..cad44245 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.22"
+export VERSION="0.6.23"
# tagging
hg tag $VERSION
diff --git a/setup.py b/setup.py
index 3e9754c7..216cdd2a 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.22"
+VERSION = "0.6.23"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py