From f6e3f754700d3ce27f224c6b1937ea36478dc4f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Sun, 12 Mar 2023 10:23:55 -0700 Subject: [PATCH] release 20.21.0 --- docs/changelog.rst | 16 ++++++++++++++++ docs/changelog/2512.feature.rst | 1 - docs/changelog/2514.bugfix.rst | 2 -- docs/changelog/2515.bugfix.rst | 1 - docs/changelog/2516.bugfix.rst | 2 -- 5 files changed, 16 insertions(+), 6 deletions(-) delete mode 100644 docs/changelog/2512.feature.rst delete mode 100644 docs/changelog/2514.bugfix.rst delete mode 100644 docs/changelog/2515.bugfix.rst delete mode 100644 docs/changelog/2516.bugfix.rst diff --git a/docs/changelog.rst b/docs/changelog.rst index 90710bbaa..cdf869af4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,22 @@ Release History .. towncrier release notes start +v20.21.0 (2023-03-12) +--------------------- + +Features - 20.21.0 +~~~~~~~~~~~~~~~~~~ +- Make closure syntax explicitly starts with {||. (:issue:`2512`) + +Bugfixes - 20.21.0 +~~~~~~~~~~~~~~~~~~ +- Add ``print`` command to nushell print_prompt to ensure compatibility with future release of nushell, + where intermediate commands no longer print their result to stdout. (:issue:`2514`) +- Do not assume the default encoding. (:issue:`2515`) +- Make ``ReentrantFileLock`` thread-safe and, + thereby, fix race condition in ``virtualenv.cli_run`` - by :user:`radoering`. (:issue:`2516`) + + v20.20.0 (2023-02-28) --------------------- diff --git a/docs/changelog/2512.feature.rst b/docs/changelog/2512.feature.rst deleted file mode 100644 index 510b2f786..000000000 --- a/docs/changelog/2512.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Make closure syntax explicitly starts with {||. diff --git a/docs/changelog/2514.bugfix.rst b/docs/changelog/2514.bugfix.rst deleted file mode 100644 index 176bea9a4..000000000 --- a/docs/changelog/2514.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add ``print`` command to nushell print_prompt to ensure compatibility with future release of nushell, -where intermediate commands no longer print their result to stdout. diff --git a/docs/changelog/2515.bugfix.rst b/docs/changelog/2515.bugfix.rst deleted file mode 100644 index af5507366..000000000 --- a/docs/changelog/2515.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Do not assume the default encoding. diff --git a/docs/changelog/2516.bugfix.rst b/docs/changelog/2516.bugfix.rst deleted file mode 100644 index 052aead56..000000000 --- a/docs/changelog/2516.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Make ``ReentrantFileLock`` thread-safe and, -thereby, fix race condition in ``virtualenv.cli_run`` - by :user:`radoering`.