summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-05-17 16:33:38 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-05-17 16:33:38 +0200
commita6f04ef2430fb4e7383a068cd1ae9a115d7a78df (patch)
tree396e613dd96f37ff622afd119d670d40910a72ad
parenta428ead3a6bbfd22a05ebb0b6ed414bad015807f (diff)
downloadcython-a6f04ef2430fb4e7383a068cd1ae9a115d7a78df.tar.gz
Prepare release of 0.29.30.0.29.30
-rw-r--r--CHANGES.rst11
-rw-r--r--Cython/Shadow.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index a2c9c6db0..7087a9391 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,17 @@
Cython Changelog
================
+0.29.30 (2022-05-16)
+====================
+
+Bugs fixed
+----------
+
+* The GIL handling changes in 0.29.29 introduced a regression where
+ objects could be deallocated without holding the GIL.
+ (Github issue #4796)
+
+
0.29.29 (2022-05-16)
====================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index cfbd7f46b..cc8c9b60a 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.29"
+__version__ = "0.29.30"
try:
from __builtin__ import basestring