diff options
author | Bernát Gábor <gaborjbernat@gmail.com> | 2023-03-14 07:41:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 07:41:34 -0700 |
commit | cac68a0de7e379cfb2e014d122ce5bf4e0c23111 (patch) | |
tree | e0c5a1c22d949422035f3633e92658eb82eac594 | |
parent | c4982361bd77c3f6705dcbb013c3937565ff33ce (diff) | |
parent | f6e3f754700d3ce27f224c6b1937ea36478dc4f2 (diff) | |
download | virtualenv-cac68a0de7e379cfb2e014d122ce5bf4e0c23111.tar.gz |
Merge pull request #2519 from pypa/release-20.21.0
-rw-r--r-- | docs/changelog.rst | 16 | ||||
-rw-r--r-- | docs/changelog/2512.feature.rst | 1 | ||||
-rw-r--r-- | docs/changelog/2514.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/2515.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/2516.bugfix.rst | 2 |
5 files changed, 16 insertions, 6 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index 90710bb..cdf869a 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 510b2f7..0000000 --- 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 176bea9..0000000 --- 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 af55073..0000000 --- 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 052aead..0000000 --- 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`. |