From 0d9f053022e663381f73f0d229cf6094521a321c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 1 Nov 2018 21:08:40 +0100 Subject: Prepare release of 0.28.6. --- CHANGES.rst | 6 +++++- Cython/Shadow.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a3aea9ee4..a31da0f25 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,12 +2,16 @@ Cython Changelog ================ -0.28.6 (??) +0.28.6 (2018-11-01) =================== Bugs fixed ---------- +* Extensions compiled with MinGW-64 under Windows could misinterpret integer + objects larger than 15 bit and return incorrect results. + (Github issue #2670) + * Multiplied string literals lost their factor when they are part of another constant expression (e.g. 'x' * 10 + 'y' => 'xy'). diff --git a/Cython/Shadow.py b/Cython/Shadow.py index 30d4aac84..fb18e419e 100644 --- a/Cython/Shadow.py +++ b/Cython/Shadow.py @@ -1,7 +1,7 @@ # cython.* namespace for pure mode. from __future__ import absolute_import -__version__ = "0.28.5" +__version__ = "0.28.6" try: from __builtin__ import basestring -- cgit v1.2.1