summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-12 05:32:05 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-12 05:32:05 +0000
commit9a9f104b716300e6b20e6501dd32d2f16030ec65 (patch)
tree951db00a6ac1c4d297684a022b75c268a36bb84b
parent3efcdec07fa19acd77cb3a5a38ef5052b509681a (diff)
downloadpython-setuptools-git-9a9f104b716300e6b20e6501dd32d2f16030ec65.tar.gz
Bump version #.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041118
-rwxr-xr-xEasyInstall.txt4
-rwxr-xr-xez_setup.py2
-rwxr-xr-xsetup.py2
-rwxr-xr-xsetuptools.txt2
-rw-r--r--setuptools/__init__.py2
5 files changed, 6 insertions, 6 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index 136c1263..3387f6f7 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -29,7 +29,7 @@ Installing "Easy Install"
-------------------------
Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a10.win32.exe>`_.
All others should just download `ez_setup.py
<http://peak.telecommunity.com/dist/ez_setup.py>`_, and run it; this will
download and install the appropriate ``setuptools`` egg for your Python
@@ -70,7 +70,7 @@ version, and automatically downloading, building, and installing it::
**Example 2**. Install or upgrade a package by name and version by finding
links on a given "download page"::
- easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a9"
+ easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a10"
**Example 3**. Download a source distribution from a specified URL,
automatically building and installing it::
diff --git a/ez_setup.py b/ez_setup.py
index 01a10711..f6d79095 100755
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``.
This file can also be run as a script to install or upgrade setuptools.
"""
-DEFAULT_VERSION = "0.5a9"
+DEFAULT_VERSION = "0.5a10"
DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/"
import sys, os
diff --git a/setup.py b/setup.py
index 8957af68..3696736a 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.5a9"
+VERSION = "0.5a10"
from setuptools import setup, find_packages
diff --git a/setuptools.txt b/setuptools.txt
index 5fb288b4..7090c7fb 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -64,7 +64,7 @@ Installing ``setuptools``
=========================
Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a10.win32.exe>`_.
All others should just download `ez_setup.py`_ and run it; this will
download and install the appropriate egg for your Python version.
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index c299790a..1cd86f72 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -7,7 +7,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
-__version__ = '0.5a9'
+__version__ = '0.5a10'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'