prepare release of 0.17.2 0.17.2
authorStefan Behnel <stefan_ml@behnel.de>
Tue, 20 Nov 2012 20:16:58 +0000 (21:16 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Tue, 20 Nov 2012 20:16:58 +0000 (21:16 +0100)
CHANGES.rst
Cython/__init__.py

index f52b514..73dd7f3 100644 (file)
@@ -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.
index 30a5e40..c5b8bac 100644 (file)
@@ -1,4 +1,4 @@
-__version__ = "0.17.2rc1"
+__version__ = "0.17.2"
 
 # Void cython.* directives (for case insensitive operating systems).
 from Cython.Shadow import *