aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2010-05-31 19:39:15 +0200
committerTarek Ziade <tarek@ziade.org>2010-05-31 19:39:15 +0200
commitc4318e2572b0158aa05fa241b85552073bb8400b (patch)
tree8d28763fb9528e7d3f5afac80404a53cf13abab5
parent0fcf811dc7e0f7be7ebd624c84f5c371b15eba1e (diff)
downloadexternal_python_setuptools-c4318e2572b0158aa05fa241b85552073bb8400b.tar.gz
external_python_setuptools-c4318e2572b0158aa05fa241b85552073bb8400b.tar.bz2
external_python_setuptools-c4318e2572b0158aa05fa241b85552073bb8400b.zip
starting 0.6.14
--HG-- branch : distribute extra : rebase_source : b9e623ce0a5b70680f18c48e1c5f64753b70d38c
-rwxr-xr-xREADME.txt6
-rw-r--r--docs/conf.py4
-rwxr-xr-xrelease.sh2
-rwxr-xr-xsetup.py2
4 files changed, 7 insertions, 7 deletions
diff --git a/README.txt b/README.txt
index 72d897e7..b004960e 100755
--- a/README.txt
+++ b/README.txt
@@ -99,9 +99,9 @@ Source installation
Download the source tarball, uncompress it, then run the install command::
- $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.13.tar.gz
- $ tar -xzvf distribute-0.6.13.tar.gz
- $ cd distribute-0.6.13
+ $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.14.tar.gz
+ $ tar -xzvf distribute-0.6.14.tar.gz
+ $ cd distribute-0.6.14
$ python setup.py install
---------------------------
diff --git a/docs/conf.py b/docs/conf.py
index 53614ed5..59443dd1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2009, The fellowship of the packaging'
# built documents.
#
# The short X.Y version.
-version = '0.6.13'
+version = '0.6.14'
# The full version, including alpha/beta/rc tags.
-release = '0.6.4'
+release = '0.6.14'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/release.sh b/release.sh
index 08ef0ee2..37bdac5c 100755
--- a/release.sh
+++ b/release.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export VERSION="0.6.13"
+export VERSION="0.6.14"
# tagging
hg tag $VERSION
diff --git a/setup.py b/setup.py
index 41e0ce40..ce7cf1d0 100755
--- a/setup.py
+++ b/setup.py
@@ -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.13"
+VERSION = "0.6.14"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py