summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/changelog.rst12
-rw-r--r--docs/changelog/2863.bugfix.rst5
2 files changed, 12 insertions, 5 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 40740b9f..283e4808 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,6 +4,18 @@ Release History
.. towncrier release notes start
+v4.3.1 (2023-01-15)
+-------------------
+
+Bugfixes - 4.3.1
+~~~~~~~~~~~~~~~~
+- Fix regression introduced in 4.3.0 by expanding substitution expressions
+ (``{...}``) that result from a previous subsitution's replacement value (up to
+ 100 times). Note that recursive expansion is strictly depth-first; no
+ replacement value will ever affect adjacent characters nor will expansion ever
+ occur over the result of more than one replacement - by :user:`masenf`. (:issue:`2863`)
+
+
v4.3.0 (2023-01-15)
-------------------
diff --git a/docs/changelog/2863.bugfix.rst b/docs/changelog/2863.bugfix.rst
deleted file mode 100644
index 538229e4..00000000
--- a/docs/changelog/2863.bugfix.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Fix regression introduced in 4.3.0 by expanding substitution expressions
-(``{...}``) that result from a previous subsitution's replacement value (up to
-100 times). Note that recursive expansion is strictly depth-first; no
-replacement value will ever affect adjacent characters nor will expansion ever
-occur over the result of more than one replacement - by :user:`masenf`.