From 5045a869d9538895769c48832cbb3a3c099ddd35 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 26 Apr 2013 08:15:00 +0200 Subject: [PATCH] changelog --- CHANGES.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 1e3bff1..60e1494 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,33 @@ Cython Changelog ================ +0.19.1 (2013-??) +=================== + +Features added +-------------- + +* A warning is emitted when negative literal indices are found inside of + a code section that disables ``wraparound`` handling. This helps with + fixing invalid code that might fail in the face of future compiler + optimisations. + +* Constant folding for boolean expressions (and/or) was improved. + +Bugs fixed +---------- + +* In C++ mode, the C99-only keyword ``restrict`` could accidentally be + seen by the GNU C++ compiler. It is now specially handled for both + GCC and MSVC. + +* Testing large (> int) C integer values for their truth value could fail + due to integer wrap-around. + +Other changes +------------- + + 0.19 (2013-04-19) ================= -- 2.7.4