summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-07-29 07:43:40 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-07-29 07:43:40 +0200
commitc48361d0a0969206e227ec016f654c9d941c2b69 (patch)
tree91754198bfc0dc6648b0712f74811b767b740226
parenta4be069c6bb0de91c98db5c6378ed2947ff46a45 (diff)
downloadcython-c48361d0a0969206e227ec016f654c9d941c2b69.tar.gz
Prepare release of 0.29.32.0.29.32
-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