summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index e87b198fb..5f5ce138a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -763,6 +763,25 @@ Other changes
.. _`PEP-479`: https://www.python.org/dev/peps/pep-0479
+.. _0.29.25:
+
+0.29.25 (2021-??-??)
+====================
+
+Bugs fixed
+----------
+
+* Avoid copying unaligned 16-bit values since some platforms require them to be aligned.
+ Use memcpy() instead to let the C compiler decide how to do it.
+ (Github issue #4343)
+
+* Cython crashed on invalid truthiness tests on C++ types without ``operator bool``.
+ Patch by David Woods. (Github issue #4348)
+
+* The declaration of ``PyUnicode_CompareWithASCIIString()`` in ``cpython.unicode`` was incorrect.
+ Patch by Max Bachmann. (Github issue #4344)
+
+
.. _0.29.24:
0.29.24 (2021-07-14)