summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst4
-rw-r--r--Cython/__init__.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index f52b51466..73dd7f39b 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 30a5e40da..c5b8bacd8 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 *