aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-13 08:22:02 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-13 08:22:02 -0400
commit17bc3630ba27ac4ce6fe4537f071e5621c31a5bc (patch)
treef6d8202426fb436b4469c847c782ff56497ff3ae
parent40da992b5e706a5bb5ac438256633828c2640f53 (diff)
downloadexternal_python_setuptools-17bc3630ba27ac4ce6fe4537f071e5621c31a5bc.tar.gz
external_python_setuptools-17bc3630ba27ac4ce6fe4537f071e5621c31a5bc.tar.bz2
external_python_setuptools-17bc3630ba27ac4ce6fe4537f071e5621c31a5bc.zip
Update versions in preparation for an 0.7b1 release0.7b1
-rw-r--r--docs/conf.py4
-rw-r--r--ez_setup.py2
-rw-r--r--release.py6
-rwxr-xr-xsetup.py2
4 files changed, 6 insertions, 8 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 9a60cfe1..25022b03 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging'
# built documents.
#
# The short X.Y version.
-version = '0.6.40'
+version = '0.7b1'
# The full version, including alpha/beta/rc tags.
-release = '0.6.40'
+release = '0.7b1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/ez_setup.py b/ez_setup.py
index 57f019b1..cb9fafb2 100644
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -47,7 +47,7 @@ except ImportError:
args = [quote(arg) for arg in args]
return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
-DEFAULT_VERSION = "0.6.40"
+DEFAULT_VERSION = "0.7b1"
DEFAULT_URL = "http://pypi.python.org/packages/source/s/setuptools/"
diff --git a/release.py b/release.py
index 2dc51ae8..48871986 100644
--- a/release.py
+++ b/release.py
@@ -22,8 +22,7 @@ try:
except Exception:
pass
-VERSION = '0.6.40'
-PACKAGE_INDEX = 'https://pypi.python.org/pypi'
+VERSION = '0.7b1'
PACKAGE_INDEX = 'https://pypi.python.org/pypi'
def get_next_version():
@@ -33,8 +32,7 @@ def get_next_version():
NEXT_VERSION = get_next_version()
-files_with_versions = ('docs/conf.py', 'setup.py', 'release.py',
- 'README.txt', 'distribute_setup.py')
+files_with_versions = 'docs/conf.py', 'setup.py', 'release.py', 'ez_setup.py'
def get_repo_name():
"""
diff --git a/setup.py b/setup.py
index c5dcbdba..8bd55b18 100755
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,7 @@ exec(init_file.read(), d)
init_file.close()
SETUP_COMMANDS = d['__all__']
-VERSION = "0.6.40"
+VERSION = "0.7b1"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py