summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-09-07 11:51:29 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-09-07 11:57:52 +0200
commita58498b89ff2c6e5e53bf4e8e246d6ec52d8d840 (patch)
tree65a638f50a7c8942da75fbff2201eaa3ff286c9c
parent16a82475f45c163d9a3ca74e177ad4eb097289eb (diff)
downloadcython-a58498b89ff2c6e5e53bf4e8e246d6ec52d8d840.tar.gz
Update changelog.
-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)