From 653d4ebcaae635183e95fba40a8bf3592ec3647e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Sat, 23 Oct 2021 12:34:50 +0100 Subject: [PATCH] Fix docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- docs/changelog.rst | 17 +++++++++++++++++ docs/changelog/2182.bugfix.txt | 2 -- docs/changelog/2205.bugfix.rst | 2 -- docs/changelog/2218.misc.rst | 1 - docs/changelog/2220.feature.rst | 1 - docs/changelog/2221.bugfix.rst | 1 - docs/conf.py | 3 ++- setup.cfg | 2 +- 8 files changed, 20 insertions(+), 9 deletions(-) delete mode 100644 docs/changelog/2182.bugfix.txt delete mode 100644 docs/changelog/2205.bugfix.rst delete mode 100644 docs/changelog/2218.misc.rst delete mode 100644 docs/changelog/2220.feature.rst delete mode 100644 docs/changelog/2221.bugfix.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 5b34b71..b81bd98 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,23 @@ Release History .. towncrier release notes start +v20.9.0 (2021-10-23) +-------------------- + +Features - 20.9.0 +~~~~~~~~~~~~~~~~~ +- Special-case ``--prompt .`` to the name of the current directory - by :user:`rkm`. (`#2220 `_) +- Add libffi-8.dll to pypy windows `#2218 `_ - by :user:`mattip` + +Bugfixes - 20.9.0 +~~~~~~~~~~~~~~~~~ +- Fixed path collision that could lead to a PermissionError or writing to system + directories when using PyPy3.8 - by :user:`mgorny`. (`#2182 `_) +- Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4`` - by + :user:`gaborbernat`. (`#2205 `_) +- Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`. (`#2221 `_) + + v20.8.1 (2021-09-24) -------------------- diff --git a/docs/changelog/2182.bugfix.txt b/docs/changelog/2182.bugfix.txt deleted file mode 100644 index 0f26a20..0000000 --- a/docs/changelog/2182.bugfix.txt +++ /dev/null @@ -1,2 +0,0 @@ -Fixed path collision that could lead to a PermissionError or writing to system -directories when using PyPy3.8 - by :user:`mgorny`. diff --git a/docs/changelog/2205.bugfix.rst b/docs/changelog/2205.bugfix.rst deleted file mode 100644 index 2b4b104..0000000 --- a/docs/changelog/2205.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4`` - by -:user:`gaborbernat`. diff --git a/docs/changelog/2218.misc.rst b/docs/changelog/2218.misc.rst deleted file mode 100644 index 25298cb..0000000 --- a/docs/changelog/2218.misc.rst +++ /dev/null @@ -1 +0,0 @@ -add libffi-8.dll to the hard-coded list of dlls for PyPy on Windows diff --git a/docs/changelog/2220.feature.rst b/docs/changelog/2220.feature.rst deleted file mode 100644 index 2bdc768..0000000 --- a/docs/changelog/2220.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Special-case ``--prompt .`` to the name of the current directory - by :user:`rkm`. diff --git a/docs/changelog/2221.bugfix.rst b/docs/changelog/2221.bugfix.rst deleted file mode 100644 index ff7580f..0000000 --- a/docs/changelog/2221.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`. diff --git a/docs/conf.py b/docs/conf.py index 920d300..b981af1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,8 @@ def generate_draft_news(): cwd=root, universal_newlines=True, ) - (root / "docs" / "_draft.rst").write_text("" if "No significant changes" in new else new) + dest = root / "docs" / "_draft.rst" + dest.write_text("" if "No significant changes" in new else new) generate_draft_news() diff --git a/setup.cfg b/setup.cfg index c4233d0..06858ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -91,7 +91,7 @@ docs = sphinx>=3 sphinx-argparse>=0.2.5 sphinx-rtd-theme>=0.4.3 - towncrier>=19.9.0rc1 + towncrier>=21.3 testing = coverage>=4 coverage_enable_subprocess>=1