diff options
-rw-r--r-- | docs/changelog/1364.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/395.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changes.rst | 11 | ||||
-rwxr-xr-x | virtualenv.py | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/docs/changelog/1364.bugfix.rst b/docs/changelog/1364.bugfix.rst deleted file mode 100644 index d6da4bc..0000000 --- a/docs/changelog/1364.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix an additional issue with #1339, where the user specifies ``--python`` -pointing to a venv redirector executable. diff --git a/docs/changelog/395.bugfix.rst b/docs/changelog/395.bugfix.rst deleted file mode 100644 index a5436e0..0000000 --- a/docs/changelog/395.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Raise an error if the target path contains the operating systems path separator (using this would break our activation scripts) - by @rrauenza. diff --git a/docs/changes.rst b/docs/changes.rst index c437086..27d4cc4 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,17 @@ Release History .. towncrier release notes start +v16.6.1 (2019-06-16) +-------------------- + +Bugfixes +^^^^^^^^ + +- Raise an error if the target path contains the operating systems path separator (using this would break our activation scripts) - by @rrauenza. (`#395 <https://github.com/pypa/virtualenv/issues/395>`_) +- Fix an additional issue with #1339, where the user specifies ``--python`` + pointing to a venv redirector executable. (`#1364 <https://github.com/pypa/virtualenv/issues/1364>`_) + + v16.6.0 (2019-05-15) -------------------- diff --git a/virtualenv.py b/virtualenv.py index 54b2f16..3ccbed6 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -44,7 +44,7 @@ except ImportError: # noinspection PyPep8Naming import configparser as ConfigParser -__version__ = "16.6.0" +__version__ = "16.6.1" virtualenv_version = __version__ # legacy DEBUG = os.environ.get("_VIRTUALENV_DEBUG", None) == "1" if sys.version_info < (2, 7): |