summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2020-05-03 14:27:40 +0100
committerGitHub <noreply@github.com>2020-05-03 14:27:40 +0100
commit6dffcf2ae7b5b55098cf3c8326472f988277cb70 (patch)
treee90a6aa2b9802bf821ff83a03e84302315152dc4
parent19fc7bca28642b80d0a0ed193f47da3a9e96d9b7 (diff)
parent1338f7cccdbc229f7a20d2c71bf7d82474cf5477 (diff)
downloadvirtualenv-6dffcf2ae7b5b55098cf3c8326472f988277cb70.tar.gz
Merge pull request #1807 from pypa/release-20.0.19
release 20.0.19
-rw-r--r--docs/changelog.rst19
-rw-r--r--docs/changelog/1776.bugfix.rst1
-rw-r--r--docs/changelog/1779.bugfix.rst1
-rw-r--r--docs/changelog/1781.bugfix.rst2
-rw-r--r--docs/changelog/1783.bugfix.rst1
-rw-r--r--docs/changelog/1784.bugfix.rst3
-rw-r--r--docs/changelog/1793.bugfix.rst1
-rw-r--r--docs/changelog/1796.bugfix.rst2
-rw-r--r--docs/changelog/1803.bugfix.rst1
9 files changed, 19 insertions, 12 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 32e6a31..db5d1e3 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,25 @@ Release History
.. towncrier release notes start
+v20.0.19 (2020-05-03)
+---------------------
+
+Bugfixes - 20.0.19
+~~~~~~~~~~~~~~~~~~
+- Fix generating a Python 2 environment from Python 3 creates invalid python activator - by :user:`gaborbernat`. (`#1776 <https://github.com/pypa/virtualenv/issues/1776>`_)
+- Fix pinning seed packages via ``app-data`` seeder raised ``Invalid Requirement`` - by :user:`gaborbernat`. (`#1779 <https://github.com/pypa/virtualenv/issues/1779>`_)
+- Do not stop interpreter discovery if we fail to find the system interpreter for a executable during discovery
+ - by :user:`gaborbernat`. (`#1781 <https://github.com/pypa/virtualenv/issues/1781>`_)
+- On CPython2 POSIX platforms ensure ``syconfig.get_makefile_filename`` exists within the virtual environment (this is used by some c-extension based libraries - e.g. numpy - for building) - by :user:`gaborbernat`. (`#1783 <https://github.com/pypa/virtualenv/issues/1783>`_)
+- Better handling of options :option:`copies` and :option:`symlinks`. Introduce priority of where the option is set
+ to follow the order: CLI, env var, file, hardcoded. If both set at same level prefers copy over symlink. - by
+ :user:`gaborbernat`. (`#1784 <https://github.com/pypa/virtualenv/issues/1784>`_)
+- Upgrade pip for Python ``2.7`` and ``3.5+`` from ``20.0.2`` to ``20.1`` - by :user:`gaborbernat`. (`#1793 <https://github.com/pypa/virtualenv/issues/1793>`_)
+- Fix CPython is not discovered from Windows registry, and discover pythons from Windows registry in decreasing order
+ by version - by :user:`gaborbernat`. (`#1796 <https://github.com/pypa/virtualenv/issues/1796>`_)
+- Fix symlink detection for creators - by :user:`asottile` (`#1803 <https://github.com/pypa/virtualenv/issues/1803>`_)
+
+
v20.0.18 (2020-04-16)
---------------------
diff --git a/docs/changelog/1776.bugfix.rst b/docs/changelog/1776.bugfix.rst
deleted file mode 100644
index 4930855..0000000
--- a/docs/changelog/1776.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix generating a Python 2 environment from Python 3 creates invalid python activator - by :user:`gaborbernat`.
diff --git a/docs/changelog/1779.bugfix.rst b/docs/changelog/1779.bugfix.rst
deleted file mode 100644
index c8d6286..0000000
--- a/docs/changelog/1779.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix pinning seed packages via ``app-data`` seeder raised ``Invalid Requirement`` - by :user:`gaborbernat`.
diff --git a/docs/changelog/1781.bugfix.rst b/docs/changelog/1781.bugfix.rst
deleted file mode 100644
index 7231fb5..0000000
--- a/docs/changelog/1781.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Do not stop interpreter discovery if we fail to find the system interpreter for a executable during discovery
-- by :user:`gaborbernat`.
diff --git a/docs/changelog/1783.bugfix.rst b/docs/changelog/1783.bugfix.rst
deleted file mode 100644
index 47ebe0f..0000000
--- a/docs/changelog/1783.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-On CPython2 POSIX platforms ensure ``syconfig.get_makefile_filename`` exists within the virtual environment (this is used by some c-extension based libraries - e.g. numpy - for building) - by :user:`gaborbernat`.
diff --git a/docs/changelog/1784.bugfix.rst b/docs/changelog/1784.bugfix.rst
deleted file mode 100644
index e21884f..0000000
--- a/docs/changelog/1784.bugfix.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Better handling of options :option:`copies` and :option:`symlinks`. Introduce priority of where the option is set
-to follow the order: CLI, env var, file, hardcoded. If both set at same level prefers copy over symlink. - by
-:user:`gaborbernat`.
diff --git a/docs/changelog/1793.bugfix.rst b/docs/changelog/1793.bugfix.rst
deleted file mode 100644
index 9c7dfbc..0000000
--- a/docs/changelog/1793.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Upgrade pip for Python ``2.7`` and ``3.5+`` from ``20.0.2`` to ``20.1`` - by :user:`gaborbernat`.
diff --git a/docs/changelog/1796.bugfix.rst b/docs/changelog/1796.bugfix.rst
deleted file mode 100644
index ad4b30d..0000000
--- a/docs/changelog/1796.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix CPython is not discovered from Windows registry, and discover pythons from Windows registry in decreasing order
-by version - by :user:`gaborbernat`.
diff --git a/docs/changelog/1803.bugfix.rst b/docs/changelog/1803.bugfix.rst
deleted file mode 100644
index 9b38f28..0000000
--- a/docs/changelog/1803.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix symlink detection for creators - by :user:`asottile`