summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-08-22 17:13:31 +0200
committerStefan Behnel <stefan_ml@behnel.de>2015-08-22 17:13:31 +0200
commit70c44041ca7a39f98d62de80915300e6cca61815 (patch)
tree62d23be559f0bb433a96c0ed9367931b5a38fc38
parentb2a071a1e45b6fd1ea9744d597ef87995e6b1881 (diff)
downloadcython-0.23.1.tar.gz
prepare release of 0.23.10.23.1
-rw-r--r--CHANGES.rst11
-rw-r--r--Cython/Shadow.py2
2 files changed, 10 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index ada012f4e..d3a8edb62 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,8 +2,8 @@
Cython Changelog
================
-Latest changes
-==============
+0.23.1 (2015-08-22)
+===================
Bugs fixed
----------
@@ -24,11 +24,18 @@ Bugs fixed
* Misnamed PEP 492 coroutine property ``cr_yieldfrom`` renamed to
``cr_await`` to match CPython.
+* Missing deallocation code for C++ object attributes in certain
+ extension class hierarchies.
+
* Crash when async coroutine was not awaited.
* Compiler crash on ``yield`` in signature annotations and default
argument values. Both are forbidden now.
+* Compiler crash on certain constructs in ``finally`` clauses.
+
+* Cython failed to build when CPython's pgen is installed.
+
0.23 (2015-08-08)
=================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index c68675373..9453f09be 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.23"
+__version__ = "0.23.1"
try:
from __builtin__ import basestring