diff options
| -rw-r--r-- | docs/news.txt | 6 | ||||
| -rwxr-xr-x | virtualenv.py | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/docs/news.txt b/docs/news.txt index ad4138e..1ba639c 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -15,12 +15,14 @@ Changes & News with the upgraded Python. -master (unreleased) -------------------- +1.8.1 (2012-09-03) +~~~~~~~~~~~~~~~~~~ * Fixed distribute version used with `--never-download`. Thanks michr for report and patch. +* Fix creating Python 3.3 based virtualenvs by unsetting the + ``__PYVENV_LAUNCHER__`` environment variable in subprocesses. 1.8 (2012-09-01) ~~~~~~~~~~~~~~~~ diff --git a/virtualenv.py b/virtualenv.py index 605b540..bfdd8ec 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -4,7 +4,7 @@ # If you change the version here, change it in setup.py # and docs/conf.py as well. -__version__ = "1.8" # following best practices +__version__ = "1.8.1" # following best practices virtualenv_version = __version__ # legacy, again import base64 |
