Commit 0d9f0530 authored by Stefan Behnel's avatar Stefan Behnel

Prepare release of 0.28.6.

parent 74135f4f
...@@ -2,12 +2,16 @@ ...@@ -2,12 +2,16 @@
Cython Changelog Cython Changelog
================ ================
0.28.6 (??) 0.28.6 (2018-11-01)
=================== ===================
Bugs fixed 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 * Multiplied string literals lost their factor when they are part of another
constant expression (e.g. 'x' * 10 + 'y' => 'xy'). constant expression (e.g. 'x' * 10 + 'y' => 'xy').
......
# cython.* namespace for pure mode. # cython.* namespace for pure mode.
from __future__ import absolute_import from __future__ import absolute_import
__version__ = "0.28.5" __version__ = "0.28.6"
try: try:
from __builtin__ import basestring from __builtin__ import basestring
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment