From 10183d61eb5cf33e6912dec2ab09740498f0947c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 20 Nov 2012 21:16:58 +0100 Subject: [PATCH] prepare release of 0.17.2 --- CHANGES.rst | 4 +++- Cython/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index f52b514..73dd7f3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,7 +2,7 @@ Cython Changelog ================ -0.17.2 (2012-11-??) +0.17.2 (2012-11-20) =================== Features added @@ -13,6 +13,8 @@ Features added Bugs fixed ---------- +* Replacing an object reference with the value of one of its cdef attributes could generate incorrect C code that accessed the object after deleting its last reference. + * C-to-Python type coercions during cascaded comparisons could generate invalid C code, specifically when using the 'in' operator. * "obj[1,]" passed a single integer into the item getter instead of a tuple. diff --git a/Cython/__init__.py b/Cython/__init__.py index 30a5e40..c5b8bac 100644 --- a/Cython/__init__.py +++ b/Cython/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.17.2rc1" +__version__ = "0.17.2" # Void cython.* directives (for case insensitive operating systems). from Cython.Shadow import * -- 2.7.4