summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2016-03-24 13:51:09 +0100
committerStefan Behnel <stefan_ml@behnel.de>2016-03-24 13:51:09 +0100
commitbb4fdbfd946d1e399abe001920b16c64c5233a86 (patch)
tree676d7673d15745662f63e6b681f74015e534a2b6
parent9b1550ff10cd1121bee0f0f97a80b1c1d6d962f4 (diff)
downloadcython-bb4fdbfd946d1e399abe001920b16c64c5233a86.tar.gz
prepare release of 0.23.5
-rw-r--r--CHANGES.rst4
-rw-r--r--Cython/Shadow.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 0b04c6912..052581a31 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,12 +2,14 @@
Cython Changelog
================
-0.23.5 (2016-03-xx)
+0.23.5 (2016-03-26)
===================
Bugs fixed
----------
+* Truth-testing Unicode strings could waste time and memory in Py3.3+.
+
* Return values of async functions could be ignored and replaced by ``None``.
* Compiler crash in CPython 3.6.
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 65db3791d..9a6b95155 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.23.4"
+__version__ = "0.23.5"
try:
from __builtin__ import basestring