diff --git a/docs/changelog.rst b/docs/changelog.rst index 414d9d45f..6cdd73af5 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 `_) +- Fix system python discovery mechanism when prefixes contain relative parts (e.g. ``..``) by resolving paths within the + python information query - by :user:`gaborbernat`. (`#1583 `_) +- Expose a programmatic API as ``from virtualenv import cli_run`` - by :user:`gaborbernat`. (`#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 `_) + +Improved Documentation - 20.0.3 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +- Document a programmatic API as ``from virtualenv import cli_run`` under :ref:`programmatic_api` - + by :user:`gaborbernat`. (`#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 23fca15f2..000000000 --- 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 aa44088d3..000000000 --- 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 91cb7744d..000000000 --- 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 47a865cd7..000000000 --- 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 b204f8f86..000000000 --- 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`.