summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernat Gabor <bgabor8@bloomberg.net>2019-02-22 17:15:50 +0300
committerBernat Gabor <bgabor8@bloomberg.net>2019-02-22 18:05:18 +0300
commitbc1d76dadbc716951cb62c378331bc98ff96fd5e (patch)
tree2074d784d466b3f7d897915a9162cac2bfaff8a4
parent2c482c82ffc2abbb9903b21829c25d4db25800ed (diff)
downloadvirtualenv-bc1d76dadbc716951cb62c378331bc98ff96fd5e.tar.gz
release 16.4.116.4.0
-rw-r--r--docs/changelog/1317.bugfix.rst1
-rw-r--r--docs/changelog/1321.feature.rst1
-rw-r--r--docs/changes.rst15
-rwxr-xr-xvirtualenv.py2
4 files changed, 16 insertions, 3 deletions
diff --git a/docs/changelog/1317.bugfix.rst b/docs/changelog/1317.bugfix.rst
deleted file mode 100644
index b88f36f..0000000
--- a/docs/changelog/1317.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix ``license()`` builtin by copying the ``LICENSE`` file into the virtualenv - by ``asottile``.
diff --git a/docs/changelog/1321.feature.rst b/docs/changelog/1321.feature.rst
deleted file mode 100644
index 16e8226..0000000
--- a/docs/changelog/1321.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-bump vendored pip to ``19.0.3`` and wheel to ``0.33.1``
diff --git a/docs/changes.rst b/docs/changes.rst
index 1a112af..360e5ce 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -5,6 +5,21 @@ Release History
.. towncrier release notes start
+v16.4.1 (2019-02-22)
+--------------------
+
+Bugfixes
+^^^^^^^^
+
+- Fix ``license()`` builtin by copying the ``LICENSE`` file into the virtualenv - by ``asottile``. (`#1317 <https://github.com/pypa/virtualenv/issues/1317>`_)
+
+
+Features
+^^^^^^^^
+
+- bump vendored pip to ``19.0.3`` and wheel to ``0.33.1`` (`#1321 <https://github.com/pypa/virtualenv/issues/1321>`_)
+
+
v16.4.0 (2019-02-09)
--------------------
diff --git a/virtualenv.py b/virtualenv.py
index 3943760..fd7974d 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -44,7 +44,7 @@ except ImportError:
# noinspection PyPep8Naming
import configparser as ConfigParser
-__version__ = "16.5.0.dev0"
+__version__ = "16.4.1"
virtualenv_version = __version__ # legacy
DEBUG = os.environ.get("_VIRTUALENV_DEBUG", None) == "1"
if sys.version_info < (2, 7):