summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-04-14 14:19:46 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-04-14 14:19:46 +0200
commitb6077b23bb77205c16c8478408cd461f4d6d3351 (patch)
tree07dd2349ef3687f5f18c75769e0ec94ed16f0625
parent7c0585e3c560e7ed13e99e95423cdeff4ebcb26d (diff)
downloadcython-b6077b23bb77205c16c8478408cd461f4d6d3351.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst14
1 files changed, 12 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 971ea026d..1437e94b1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,14 +2,24 @@
Cython Changelog
================
-0.29.23 (2021-04-11)
+0.29.23 (2021-04-14)
====================
Bugs fixed
----------
* Some problems with Python 3.10 were resolved.
- Patches by Victor Stinner and David Woods. (Github issue #4046)
+ Patches by Victor Stinner and David Woods. (Github issues #4046, #4100)
+
+* An incorrect "optimisation" was removed that allowed changes to a keyword
+ dict to leak into keyword arguments passed into a function.
+ Patch by Peng Weikang. (Github issue #3227)
+
+* Multiplied str constants could end up as bytes constants with language_level=2.
+ Patch by Alphadelta14 and David Woods. (Github issue #3951)
+
+* ``PY_SSIZE_T_CLEAN`` does not get defined any more if it is already defined.
+ Patch by Andrew Jones. (Github issue #4104)
0.29.22 (2021-02-20)