# HG changeset patch # User Robert Bradshaw <robertwb@gmail.com> # Date 1357241995 28800 # Thu Jan 03 11:39:55 2013 -0800 # Node ID 519863321082d6b13633ecd69248efc2e5a7155a # Parent b473fb6f7a7c49a0377c8614e60681f91ff1956e Prep for 0.17.4 release. diff --git a/CHANGES.rst b/CHANGES.rst --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,15 @@ Cython Changelog ================ +0.17.4 (2013-01-03) +=================== + +Bugs fixed +---------- + +* Garbage collection triggered during deallocation of container classes could lead to a double-deallocation. + + 0.17.3 (2012-12-14) =================== diff --git a/Cython/__init__.py b/Cython/__init__.py --- a/Cython/__init__.py +++ b/Cython/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.17.3" +__version__ = "0.17.4" # Void cython.* directives (for case insensitive operating systems). from Cython.Shadow import *