From 70c44041ca7a39f98d62de80915300e6cca61815 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 22 Aug 2015 17:13:31 +0200 Subject: prepare release of 0.23.1 --- CHANGES.rst | 11 +++++++++-- Cython/Shadow.py | 2 +- 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 -- cgit v1.2.1