aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-24 16:36:21 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-24 16:36:21 -0400
commit6075a86ef9810670e9b89c9f4321aad19158fad0 (patch)
tree99b1962c84d232cddb3f7935d526553ff06871be
parent0465490edb621f16353aa5ac7d9661cf69accf8b (diff)
downloadexternal_python_setuptools-6075a86ef9810670e9b89c9f4321aad19158fad0.tar.gz
external_python_setuptools-6075a86ef9810670e9b89c9f4321aad19158fad0.tar.bz2
external_python_setuptools-6075a86ef9810670e9b89c9f4321aad19158fad0.zip
Bump to 0.7b2 for next release
-rw-r--r--docs/conf.py4
-rw-r--r--ez_setup.py2
-rw-r--r--release.py2
-rwxr-xr-xsetup.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 25022b03..3ce8913e 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.7b1'
+version = '0.7b2'
# The full version, including alpha/beta/rc tags.
-release = '0.7b1'
+release = '0.7b2'
# 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 cb9fafb2..34882266 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.7b1"
+DEFAULT_VERSION = "0.7b2"
DEFAULT_URL = "http://pypi.python.org/packages/source/s/setuptools/"
diff --git a/release.py b/release.py
index 10c21e24..229f8ed8 100644
--- a/release.py
+++ b/release.py
@@ -22,7 +22,7 @@ try:
except Exception:
pass
-VERSION = '0.7b1'
+VERSION = '0.7b2'
PACKAGE_INDEX = 'https://pypi.python.org/pypi'
def get_next_version(version):
diff --git a/setup.py b/setup.py
index 134336ea..f43b07e2 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.7b1"
+VERSION = "0.7b2"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py