summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-02-16 12:53:32 +0100
committerStefan Behnel <stefan_ml@behnel.de>2022-02-16 12:54:33 +0100
commit5ba24b45a3e4d5b49c0fb9590c3e36d12c54d174 (patch)
treefa025b2c4b77a7adc69b27995634d77797efc973
parent2d287a6191bbba1e120ba9240b24ce364c443204 (diff)
downloadcython-5ba24b45a3e4d5b49c0fb9590c3e36d12c54d174.tar.gz
Prepare release of 0.29.28.
-rw-r--r--CHANGES.rst15
-rw-r--r--Cython/Shadow.py2
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 77d8d6262..23ab2bfe3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,21 @@
Cython Changelog
================
+0.29.28 (2022-02-16)
+====================
+
+Bugs fixed
+----------
+
+* Due to backwards incompatible changes in CPython 3.11a4, the feature flags
+ ``CYTHON_FAST_THREAD_STATE`` and ``CYTHON_USE_EXC_INFO_STACK`` are now disabled
+ in Python 3.11 and later. They are enabled again in Cython 3.0.
+ Patch by David Woods. (Github issue #4610)
+
+* A C compiler warning in older PyPy versions was resolved.
+ Patch by Matti Picus. (Github issue #4236)
+
+
0.29.27 (2022-01-28)
====================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index e7b9e4f61..fb662dc05 100644
--- a/Cython/Shadow.py
+++ b/Cython/Shadow.py
@@ -1,7 +1,7 @@
# cython.* namespace for pure mode.
from __future__ import absolute_import
-__version__ = "0.29.27"
+__version__ = "0.29.28"
try:
from __builtin__ import basestring