summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst13
-rw-r--r--Cython/Shadow.py2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index b0eaae423..8b5297166 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,19 @@
Cython Changelog
================
+0.29.32 (2022-07-29)
+====================
+
+Bugs fixed
+----------
+
+* Revert "Using memoryview typed arguments in inner functions is now rejected as unsupported."
+ Patch by David Woods. (Github issue #4798)
+
+* ``from module import *`` failed in 0.29.31 when using memoryviews.
+ Patch by David Woods. (Github issue #4927)
+
+
0.29.31 (2022-07-27)
====================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 60d9c37fd..15b9e4c05 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.31"
+__version__ = "0.29.32"
try:
from __builtin__ import basestring