summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-02-01 15:01:08 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-02-01 15:01:08 +0100
commit930173964edb0a48057f38a952fef667111b5347 (patch)
tree3fe4ad6293e0ac0772fb25a3b03c71dd1ae13c44
parent4278dbf0ee8f3f09a58b8382547cc5256ceb2465 (diff)
downloadcython-930173964edb0a48057f38a952fef667111b5347.tar.gz
Prepare release of Cython 0.29.4.
-rw-r--r--CHANGES.rst10
-rw-r--r--Cython/Shadow.py2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index a29750ffc..84a9a9271 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,16 @@
Cython Changelog
================
+0.29.4 (2019-02-01)
+===================
+
+Bugs fixed
+----------
+
+* Division of numeric constants by a runtime value of 0 could fail to raise a
+ ``ZeroDivisionError``. (Github issue #2820)
+
+
0.29.3 (2019-01-19)
===================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 4ac0150ee..ab11c3307 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.3"
+__version__ = "0.29.4"
try:
from __builtin__ import basestring