aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt6
-rw-r--r--distribute.egg-info/entry_points.txt3
-rw-r--r--distribute_setup.py2
-rwxr-xr-xrelease.sh4
-rwxr-xr-xsetup.py2
5 files changed, 11 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 15adb6a4..c236c98e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,12 @@ CHANGES
=======
-----
+0.6.3
+-----
+
+
+
+-----
0.6.2
-----
diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt
index 4bbb6848..d18df338 100644
--- a/distribute.egg-info/entry_points.txt
+++ b/distribute.egg-info/entry_points.txt
@@ -7,7 +7,6 @@ build_py = setuptools.command.build_py:build_py
saveopts = setuptools.command.saveopts:saveopts
egg_info = setuptools.command.egg_info:egg_info
register = setuptools.command.register:register
-upload = setuptools.command.upload:upload
install_egg_info = setuptools.command.install_egg_info:install_egg_info
alias = setuptools.command.alias:alias
easy_install = setuptools.command.easy_install:easy_install
@@ -32,7 +31,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete
[console_scripts]
easy_install = setuptools.command.easy_install:main
-easy_install-2.4 = 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 4fe04875..d88e0ebb 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.2"
+DEFAULT_VERSION = "0.6.3"
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 6af72616..467a1c24 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.2"
+export VERSION="0.6.3"
# creating the releases
rm -rf dist
@@ -7,6 +7,6 @@ rm -rf dist
# now preparing the source release
python2.6 setup.py -q egg_info -RDb '' sdist register upload
-# pushin the bootstrap script
+# pushing the bootstrap script
scp distribute_setup.py ziade.org:nightly/build/
diff --git a/setup.py b/setup.py
index fc4a9c6a..04f81ca8 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.2"
+VERSION = "0.6.3"
from setuptools import setup, find_packages
import sys