summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorda-woods <dw-git@d-woods.co.uk>2022-07-03 08:54:23 +0100
committerda-woods <dw-git@d-woods.co.uk>2022-07-03 08:54:23 +0100
commita70b9d3cde2a0f62f0ebf7a8a28f32af5de99e8c (patch)
tree5a4cfef4b3c24498ad12d0e57048bc2952bfcc08
parent98cebe4dedb52550ce621cf9338283dd7262ea83 (diff)
downloadcython-a70b9d3cde2a0f62f0ebf7a8a28f32af5de99e8c.tar.gz
Updated changelog
-rw-r--r--CHANGES.rst34
1 files changed, 34 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 7087a9391..acc5e3020 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,40 @@
Cython Changelog
================
+0.29.31 (2022-??-??)
+====================
+
+Bugs fixed
+----------
+
+* Use ``importlib.util.find_spec()`` instead of the deprecated ``importlib.find_loader()``
+ function when setting up the package path at import-time. Patch by Matti Picus.
+ (Github issue #4764)
+
+* Require the C compiler to support the two-arg form of ``va_start`` on Python 3.10
+ and higher. Patch by Thomas Caswell.
+ (Github issue #4820)
+
+* Make ``fused_type`` subscriptable in Shadow.py. Patch by Pfebrer.
+ (Github issue #4842)
+
+* Fix the incorrect code generation of the target type in ``bytearray`` loops.
+ Patch by Kenrick Everett.
+ (Github issue #4108)
+
+* Silence some GCC ``-Wconversion`` warnings in C utility code.
+ Patch by Lisandro Dalcin.
+ (Github issue #4854)
+
+* Stop tuple multiplication being ignored in expressions such as ``[*(1,) * 2]``.
+ Patch by David Woods.
+ (Github issue #4864)
+
+* Ensure that object buffers (e.g. ``ndarray[object, ndim=1]``) containing
+ ``NULL`` pointers are safe to use, returning ``None`` instead of the ``NULL``
+ pointer. Patch by Sebastian Berg.
+ (Github issue #4859)
+
0.29.30 (2022-05-16)
====================