diff options
author | Ian Bicking <ianb@colorstudy.com> | 2008-08-29 11:23:24 -0500 |
---|---|---|
committer | Ian Bicking <ianb@colorstudy.com> | 2008-08-29 11:23:24 -0500 |
commit | f0be1b2acf8af3bd3b4792c470209aba77fccbf1 (patch) | |
tree | 3675ba8f44b930c3e3139a69249aee2d18b89bd9 | |
parent | 77d928a0817412d83f8f72968de39dd20db33a5c (diff) | |
download | virtualenv-f0be1b2acf8af3bd3b4792c470209aba77fccbf1.tar.gz |
[svn r3563] update versions for release1.2
-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( |