summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Bicking <ianb@colorstudy.com>2008-09-24 16:15:19 -0500
committerIan Bicking <ianb@colorstudy.com>2008-09-24 16:15:19 -0500
commitd67b140278b87bf0d3e7dc42a1dfedf80f7c8246 (patch)
treedaed8105d266229c12c99ae924ca8354352a8a4e
parent0bb43c628447bf47714f64d810741ffeb6600283 (diff)
downloadvirtualenv-d67b140278b87bf0d3e7dc42a1dfedf80f7c8246.tar.gz
[svn r3596] update news for new release1.3
-rw-r--r--docs/index.txt6
-rw-r--r--setup.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.txt b/docs/index.txt
index 6b08ec5..64de64b 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -301,9 +301,10 @@ Other Documentation and Links
Changes & News
--------------
-svn trunk
-~~~~~~~~~
+1.3
+~~~
+* Update to Setuptools 0.6c9
* Added an option ``virtualenv --relocatable EXISTING_ENV``, which
will make an existing environment "relocatable" -- the paths will
not be absolute in scripts, ``.egg-info`` and ``.pth`` files. This
@@ -325,7 +326,6 @@ svn trunk
2.3. You'll still need to backport your own ``subprocess`` module.
* Fixed the ``__classpath__`` entry in Jython's ``sys.path`` taking
precedent over virtualenv's libs.
-* Update to Setuptools 0.6c9
1.2
~~~
diff --git a/setup.py b/setup.py
index 6253c0e..9be2c9b 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ except ImportError:
print 'Note: without Setuptools installed you will have to use "python -m virtualenv ENV"'
import sys, os
-version = '1.2.1'
+version = '1.3'
f = open(os.path.join(os.path.dirname(__file__), 'docs', 'index.txt'))
long_description = f.read().strip()