summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-11-01 21:08:40 +0100
committerStefan Behnel <stefan_ml@behnel.de>2018-11-01 21:08:40 +0100
commit0d9f053022e663381f73f0d229cf6094521a321c (patch)
tree6f29d5394557bb228ee48e6a656ff484d6e9bbf1
parent74135f4f043fdd0a64012af438d6e9ea448f12b6 (diff)
downloadcython-0.28.x.tar.gz
Prepare release of 0.28.6.0.28.60.28.x
-rw-r--r--CHANGES.rst6
-rw-r--r--Cython/Shadow.py2
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