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:51:29 +0200
commitf4710b3b9c9cf28e1c4d470b59d66f535ec193c8 (patch)
treebb141f4a31b9b64f7571b8bb0d457f9cbfc5a6d5
parent488e2ce23ff04a6ca9a54d04acbeadb368630121 (diff)
downloadcython-f4710b3b9c9cf28e1c4d470b59d66f535ec193c8.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index ef4fab222..9d37f64dd 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,23 @@
Cython Changelog
================
+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 (2021-07-14)
====================