release 21.4.2
diff --git a/docs/changelog.rst b/docs/changelog.rst
index f0e8726..39371d6 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -7,6 +7,17 @@
 .. towncrier release notes start
 
 **********************
+ v21.4.2 (2026-05-31)
+**********************
+
+Bugfixes - 21.4.2
+=================
+
+- Stop ``deactivate`` in the bash/zsh activation script from aborting under ``set -e`` when ``hash -r`` fails (for
+  example with shell hashing disabled) by appending ``|| true``, matching CPython ``venv`` (gh-149701) and the existing
+  non-deactivate call - by :user:`gaborbernat`. (:issue:`3152`)
+
+**********************
  v21.4.1 (2026-05-28)
 **********************
 
diff --git a/docs/changelog/3152.bugfix.rst b/docs/changelog/3152.bugfix.rst
deleted file mode 100644
index 1179aef..0000000
--- a/docs/changelog/3152.bugfix.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Stop ``deactivate`` in the bash/zsh activation script from aborting under ``set -e`` when ``hash -r`` fails (for example
-with shell hashing disabled) by appending ``|| true``, matching CPython ``venv`` (gh-149701) and the existing
-non-deactivate call - by :user:`gaborbernat`.