summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-09-03 10:03:49 +0200
committerJannis Leidel <jannis@leidel.info>2012-09-03 10:03:49 +0200
commit14061f75db00dc2d1e6bd0baa9111d1f7064cddb (patch)
treeb0b03e6d107bc8394a600e143a3f5fa3a7389d10
parentc02e1d1862f098ec39299ed70b26d9ae3e299130 (diff)
downloadvirtualenv-1.8.1.tar.gz
Updated changelog and bumped version.1.8.1
-rw-r--r--docs/news.txt6
-rwxr-xr-xvirtualenv.py2
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