summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/index.txt4
-rw-r--r--setup.py2
-rwxr-xr-xvirtualenv.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.txt b/docs/index.txt
index 18bb16c..8c769bc 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -258,8 +258,8 @@ Other Documentation and Links
Changes & News
--------------
-svn trunk
-~~~~~~~~~
+1.2
+~~~
* Added a ``--python`` option to select the Python interpreter.
* Add ``warnings`` to the modules copied over, for Python 2.6 support.
diff --git a/setup.py b/setup.py
index 43c0496..68c890b 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.1.1'
+version = '1.2'
f = open(os.path.join(os.path.dirname(__file__), 'docs', 'index.txt'))
long_description = f.read().strip()
diff --git a/virtualenv.py b/virtualenv.py
index 4b5e05c..cb485cf 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -298,7 +298,7 @@ def filter_ez_setup(line):
def main():
parser = optparse.OptionParser(
- version="1.1.1dev",
+ version="1.2",
usage="%prog [OPTIONS] DEST_DIR")
parser.add_option(