summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-05-02 09:04:21 +0200
committerStefan Behnel <stefan_ml@behnel.de>2023-05-02 09:12:23 +0200
commit6a901e1256d85695bc98808795c4b53badfedfc8 (patch)
tree33313d2e403b47db260e7fa29f2d142531092492
parentb774109f7c54d7b5c25991f45649abc19871c5cd (diff)
downloadcython-6a901e1256d85695bc98808795c4b53badfedfc8.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 89075c671..a8746d0ac 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -10,6 +10,16 @@ Bugs fixed
* Some C compile failures in CPython 3.12 were resolved.
+* A C compile failure in PyPy 3.10 was resolved.
+ Patch by Matti Picus. (Github issue :issue:`5408`)
+
+* Cython modules now use PEP-489 multi-phase init by default in PyPy 3.9 and later.
+ Original patch by Matti Picus. (Github issue :issue:`5413`)
+
+* API header files generated by different Cython versions can now be included in the
+ same C file.
+ (Github issue :issue:`5383`)
+
* Function signatures containing a type like `tuple[()]` could not be printed.
Patch by Lisandro Dalcin. (Github issue :issue:`5355`)