summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernat Gabor <bgabor8@bloomberg.net>2020-02-12 13:50:43 +0000
committerBernat Gabor <bgabor8@bloomberg.net>2020-02-12 13:50:43 +0000
commitc511998e64d5d7cf2587074726cff1119fa85f1d (patch)
treead45e6beb20f5a824a3fdb34943ded475cfb8d4b
parentbf2815f4b43c6bca2a6d48d5dfe1054a08e05c67 (diff)
downloadvirtualenv-20.0.3.tar.gz
release 20.0.320.0.3
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
-rw-r--r--docs/changelog.rst19
-rw-r--r--docs/changelog/1561.bugfix.rst2
-rw-r--r--docs/changelog/1583.bugfix.rst2
-rw-r--r--docs/changelog/1585.bugfix.rst1
-rw-r--r--docs/changelog/1585.doc.rst2
-rw-r--r--docs/changelog/1589.bugfix.rst2
6 files changed, 19 insertions, 9 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 414d9d4..6cdd73a 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,25 @@ Release History
.. towncrier release notes start
+v20.0.3 (2020-02-12)
+--------------------
+
+Bugfixes - 20.0.3
+~~~~~~~~~~~~~~~~~
+- On Python 2 with Apple Framework builds the global site package is no longer added when the
+ :option:`system-site-packages` is not specified - by :user:`gaborbernat`. (`#1561 <https://github.com/pypa/virtualenv/issues/1561>`_)
+- Fix system python discovery mechanism when prefixes contain relative parts (e.g. ``..``) by resolving paths within the
+ python information query - by :user:`gaborbernat`. (`#1583 <https://github.com/pypa/virtualenv/issues/1583>`_)
+- Expose a programmatic API as ``from virtualenv import cli_run`` - by :user:`gaborbernat`. (`#1585 <https://github.com/pypa/virtualenv/issues/1585>`_)
+- Fix ``app-data`` :option:`seeder` injects a extra ``.dist-info.virtualenv`` path that breaks ``importlib.metadata``,
+ now we inject an extra ``.virtualenv`` - by :user:`gaborbernat`. (`#1589 <https://github.com/pypa/virtualenv/issues/1589>`_)
+
+Improved Documentation - 20.0.3
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+- Document a programmatic API as ``from virtualenv import cli_run`` under :ref:`programmatic_api` -
+ by :user:`gaborbernat`. (`#1585 <https://github.com/pypa/virtualenv/issues/1585>`_)
+
+
v20.0.2 (2020-02-11)
--------------------
diff --git a/docs/changelog/1561.bugfix.rst b/docs/changelog/1561.bugfix.rst
deleted file mode 100644
index 23fca15..0000000
--- a/docs/changelog/1561.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-On Python 2 with Apple Framework builds the global site package is no longer added when the
-:option:`system-site-packages` is not specified - by :user:`gaborbernat`.
diff --git a/docs/changelog/1583.bugfix.rst b/docs/changelog/1583.bugfix.rst
deleted file mode 100644
index aa44088..0000000
--- a/docs/changelog/1583.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix system python discovery mechanism when prefixes contain relative parts (e.g. ``..``) by resolving paths within the
-python information query - by :user:`gaborbernat`.
diff --git a/docs/changelog/1585.bugfix.rst b/docs/changelog/1585.bugfix.rst
deleted file mode 100644
index 91cb774..0000000
--- a/docs/changelog/1585.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Expose a programmatic API as ``from virtualenv import cli_run`` - by :user:`gaborbernat`.
diff --git a/docs/changelog/1585.doc.rst b/docs/changelog/1585.doc.rst
deleted file mode 100644
index 47a865c..0000000
--- a/docs/changelog/1585.doc.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Document a programmatic API as ``from virtualenv import cli_run`` under :ref:`programmatic_api` -
-by :user:`gaborbernat`.
diff --git a/docs/changelog/1589.bugfix.rst b/docs/changelog/1589.bugfix.rst
deleted file mode 100644
index b204f8f..0000000
--- a/docs/changelog/1589.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix ``app-data`` :option:`seeder` injects a extra ``.dist-info.virtualenv`` path that breaks ``importlib.metadata``,
-now we inject an extra ``.virtualenv`` - by :user:`gaborbernat`.