summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-10-03 21:02:50 +0200
committerStefan Behnel <stefan_ml@behnel.de>2017-10-03 21:02:50 +0200
commitce1f4296efe3fb7f6c1e241e6aa72447ebb3414b (patch)
treeeada7dd8d4e7b06d4d4d150fdab74236b036bec7
parent1d37f2ae8c0754a9c823f5ca88641778858f9204 (diff)
downloadcython-ce1f4296efe3fb7f6c1e241e6aa72447ebb3414b.tar.gz
Update changelog and version in 0.27.x branch.
-rw-r--r--CHANGES.rst18
-rw-r--r--Cython/Shadow.py2
2 files changed, 19 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 8f526cb45..a33812867 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,24 @@
Cython Changelog
================
+0.27.2 (2017-??-??)
+===================
+
+Bugs fixed
+----------
+
+* Crash on first lookup of "cline_in_traceback" option during exception handling.
+ (Github issue #1907)
+
+* Some nested module level comprehensions failed to compile.
+ (Github issue #1906)
+
+* Compiler crash on some complex type declarations in pure mode.
+ (Github issue #1908)
+
+* Compiler crash on misnamed properties. (Github issue #1905)
+
+
0.27.1 (2017-10-01)
===================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 0914b3e21..b3459f25b 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.27.1"
+__version__ = "0.27.2a0"
try:
from __builtin__ import basestring