summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-08-03 08:32:20 +0200
committerStefan Behnel <stefan_ml@behnel.de>2018-08-03 08:32:20 +0200
commit9be8b3d3e8eee1fbf6415e9da76f66fda58ac906 (patch)
treeaf321fe1296139ce1be323486e6fb6672142748a
parentc332fbb3202d5d83693ec6a8f4305d4d3fc22c6d (diff)
downloadcython-9be8b3d3e8eee1fbf6415e9da76f66fda58ac906.tar.gz
Update changelog and prepare release of 0.28.5.
-rw-r--r--CHANGES.rst13
-rw-r--r--Cython/Shadow.py2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 441219891..6af53424b 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,6 +2,19 @@
Cython Changelog
================
+0.28.5 (2018-08-03)
+===================
+
+Bugs fixed
+----------
+
+* The discouraged usage of GCC's attribute ``optimize("Os")`` was replaced by the
+ similar attribute ``cold`` to reduce the code impact of the module init functions.
+ (Github issue #2494)
+
+* A reference leak in Py2.x was fixed when comparing str to unicode for equality.
+
+
0.28.4 (2018-07-08)
===================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index f126c4423..30d4aac84 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.4"
+__version__ = "0.28.5"
try:
from __builtin__ import basestring