Commit ea5a0098 authored by guyroz's avatar guyroz

bumped revision

--HG--
branch : distribute
extra : rebase_source : 830f7186c8f3c26e86eac1e4287f0545e23a2744
parent 9806553a
......@@ -2,6 +2,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
------
......
......@@ -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"
......
#!/bin/sh
export VERSION="0.6.22"
export VERSION="0.6.23"
# tagging
hg tag $VERSION
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment