Skip to content

Commit 653d4eb

Browse files
committed
Fix docs
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
1 parent a13e51e commit 653d4eb

File tree

8 files changed

+20
-9
lines changed

8 files changed

+20
-9
lines changed

docs/changelog.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ Release History
55

66
.. towncrier release notes start
77
8+
v20.9.0 (2021-10-23)
9+
--------------------
10+
11+
Features - 20.9.0
12+
~~~~~~~~~~~~~~~~~
13+
- Special-case ``--prompt .`` to the name of the current directory - by :user:`rkm`. (`#2220 <https://github.com/pypa/virtualenv/issues/2220>`_)
14+
- Add libffi-8.dll to pypy windows `#2218 <https://github.com/pypa/virtualenv/issues/2218>`_ - by :user:`mattip`
15+
16+
Bugfixes - 20.9.0
17+
~~~~~~~~~~~~~~~~~
18+
- Fixed path collision that could lead to a PermissionError or writing to system
19+
directories when using PyPy3.8 - by :user:`mgorny`. (`#2182 <https://github.com/pypa/virtualenv/issues/2182>`_)
20+
- Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4`` - by
21+
:user:`gaborbernat`. (`#2205 <https://github.com/pypa/virtualenv/issues/2205>`_)
22+
- Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`. (`#2221 <https://github.com/pypa/virtualenv/issues/2221>`_)
23+
24+
825
v20.8.1 (2021-09-24)
926
--------------------
1027

docs/changelog/2182.bugfix.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/changelog/2205.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/changelog/2218.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/2220.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/2221.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ def generate_draft_news():
6464
cwd=root,
6565
universal_newlines=True,
6666
)
67-
(root / "docs" / "_draft.rst").write_text("" if "No significant changes" in new else new)
67+
dest = root / "docs" / "_draft.rst"
68+
dest.write_text("" if "No significant changes" in new else new)
6869

6970

7071
generate_draft_news()

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ docs =
9191
sphinx>=3
9292
sphinx-argparse>=0.2.5
9393
sphinx-rtd-theme>=0.4.3
94-
towncrier>=19.9.0rc1
94+
towncrier>=21.3
9595
testing =
9696
coverage>=4
9797
coverage_enable_subprocess>=1

0 commit comments

Comments
 (0)