diff options
-rw-r--r-- | docs/index.txt | 4 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rwxr-xr-x | virtualenv.py | 2 |
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. @@ -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( |