diff options
author | Bernat Gabor <bgabor8@bloomberg.net> | 2019-01-25 14:35:24 +0000 |
---|---|---|
committer | Bernat Gabor <bgabor8@bloomberg.net> | 2019-01-25 14:35:24 +0000 |
commit | 591282f224d5d128f4452a319e0ed9a3bcb058c1 (patch) | |
tree | 81616cb6db8aa61edeb57157831c9ed5e6c9269b /docs/changes.rst | |
parent | cfd9c816bfaa22db1410ca9ec2223982daf94a42 (diff) | |
download | virtualenv-16.3.0.tar.gz |
release 16.3.016.3.0
Diffstat (limited to 'docs/changes.rst')
-rw-r--r-- | docs/changes.rst | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/changes.rst b/docs/changes.rst index 1bc5a29..ae40de7 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,35 @@ Release History .. towncrier release notes start +v16.3.0 (2019-01-25) +-------------------- + +Bugfixes +^^^^^^^^ + +- Use ``importlib`` over deprecated ``imp` in ``distutils/__init__.py`` for python 3 - by Anthony Sottile (`#955 <https://github.com/pypa/virtualenv/issues/955>`_) +- Preserve ``cert`` option defined in ``pip.conf`` or environment variable. (`#1273 <https://github.com/pypa/virtualenv/issues/1273>`_) +- fixed a ``ResourceWarning: unclosed file`` in ``call_subprocess()`` - by Mickaƫl Schoentgen (`#1277 <https://github.com/pypa/virtualenv/issues/1277>`_) +- pre-import some built-in modules in ``site.py`` on PyPy according to PyPy's ``site.py`` - by microdog (`#1281 <https://github.com/pypa/virtualenv/issues/1281>`_) +- Copy files from ``sys.exec_prefix`` only if it is really different path than + used prefix, bugfix for #1270 (`#1282 <https://github.com/pypa/virtualenv/issues/1282>`_) + + +Features +^^^^^^^^ + +- Enable virtualenv to be distributed as a ``zipapp`` or to be run as a + wheel with ``PYTHONPATH=virtualenv...any.whl python -mvirtualenv`` - by + Anthony Sottile (`#1092 <https://github.com/pypa/virtualenv/issues/1092>`_) +- bump vendored pip from ``18.1`` to ``19.0.1`` (`#1291 <https://github.com/pypa/virtualenv/issues/1291>`_) + + +Documentation +^^^^^^^^^^^^^ + +- discourage installation as ``root``, including ``sudo`` - by ``altendky`` (`#1061 <https://github.com/pypa/virtualenv/issues/1061>`_) + + v16.2.0 (2018-12-31) -------------------- |