diff --git a/docs/changelog.rst b/docs/changelog.rst index 5b34b71cf..b81bd9847 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 0f26a202b..000000000 --- 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 2b4b10458..000000000 --- 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 25298cb55..000000000 --- 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 2bdc76875..000000000 --- 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 ff7580ff9..000000000 --- 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 920d30076..b981af1d2 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 c4233d041..06858ad60 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