summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-07-07 10:34:16 +0200
committerStefan Behnel <stefan_ml@behnel.de>2019-07-07 10:34:16 +0200
commitf6f8917bedaa4f34b49f8c02c4a826e108b24010 (patch)
tree40b16757f06d6b7473a42804fb4fc35ad70eb54b
parent2528a9c60b816650ec38843a8ca123a2ac63fa87 (diff)
downloadcython-f6f8917bedaa4f34b49f8c02c4a826e108b24010.tar.gz
Prepare release 0f 0.29.12.0.29.12
-rw-r--r--CHANGES.rst5
-rw-r--r--Cython/Shadow.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 6c282a9b9..25fb97f12 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-0.29.12 (2019-07-??)
+0.29.12 (2019-07-07)
====================
Bugs fixed
@@ -17,6 +17,9 @@ Bugs fixed
* Fix reported error positions of undefined builtins and constants.
Patch by Orivej Desh. (Github issue #3030)
+* A 32 bit issue in the Pythran support was resolved.
+ Patch by Serge Guelton. (Github issue #3032)
+
0.29.11 (2019-06-30)
====================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index c8820eab7..b7cea0561 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.11"
+__version__ = "0.29.12"
try:
from __builtin__ import basestring