Skip to content

Commit

Permalink
release 20.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Feb 10, 2020
1 parent 2378b50 commit 3d5212f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
14 changes: 14 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Release History

.. towncrier release notes start
v20.0.1 (2020-02-10)
--------------------

Features - 20.0.1
~~~~~~~~~~~~~~~~~
- upgrade embedded setuptools to ``45.2.0`` from ``45.1.0`` for Python ``3.4+`` - by :user:`gaborbernat`. (`#1552 <https://github.com/pypa/virtualenv/issues/1554>`_)

Bugfixes - 20.0.1
~~~~~~~~~~~~~~~~~
- Virtual environments created via relative path on Windows creates bad console executables - by :user:`gaborbernat`. (`#1552 <https://github.com/pypa/virtualenv/issues/1552>`_)
- Seems sometimes venvs created set their base executable to themselves; we accept these without question, so we handle
virtual environments as system pythons causing issues - by :user:`gaborbernat`. (`#1553 <https://github.com/pypa/virtualenv/issues/1553>`_)


v20.0.0. (2020-02-10)
---------------------

Expand Down
1 change: 0 additions & 1 deletion docs/changelog/1552.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions docs/changelog/1553.bugfix.rst

This file was deleted.

10 changes: 5 additions & 5 deletions src/virtualenv/seed/embed/wheels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
BUNDLE_SUPPORT = {
"3.9": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
"setuptools": "setuptools-45.1.0-py3-none-any.whl",
"setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
"setuptools": "setuptools-45.1.0-py3-none-any.whl",
"setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
"setuptools": "setuptools-45.1.0-py3-none-any.whl",
"setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.6": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
"setuptools": "setuptools-45.1.0-py3-none-any.whl",
"setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.5": {
"pip": "pip-20.0.2-py2.py3-none-any.whl",
"setuptools": "setuptools-45.1.0-py3-none-any.whl",
"setuptools": "setuptools-45.2.0-py3-none-any.whl",
"wheel": "wheel-0.34.2-py2.py3-none-any.whl",
},
"3.4": {
Expand Down
Binary file not shown.

0 comments on commit 3d5212f

Please sign in to comment.