summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-10-26 13:48:10 -0700
committerRobert Bradshaw <robertwb@gmail.com>2016-10-26 13:48:10 -0700
commit53985a5a08cffcdcd87b2fed9e726c129309d8bf (patch)
tree6f20364b69bf8aafabc40cede029f9d1a0352fcb
parent4ecdd3e4e5984011fe93af6c4ccaf6d67a88f6f5 (diff)
downloadcython-53985a5a08cffcdcd87b2fed9e726c129309d8bf.tar.gz
Changelog, version bump for 0.25.1b00.25.1b0
-rw-r--r--CHANGES.rst21
-rw-r--r--Cython/Shadow.py2
2 files changed, 21 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 4bbc3fa4d..566e646dd 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,26 @@
Cython Changelog
================
-0.25 (2016-??-??)
+0.25.1 (2016-10-26?)
+=================
+
+Bugs fixed
+----------
+
+* Fixes a bug with ``isinstance(o, Exception)`` (Github issue #1496).
+
+* Fixes bug with ``cython.view.array`` missing utility code in some cases
+ (Github issue #1502).
+
+Other changes
+-------------
+
+* The distutils extension ``Cython.Distutils.build_ext`` has been reverted,
+ temporarily, to be ``old_build_ext`` to give projects time to migrate.
+ The new build_ext is available as ``new_build_ext``.
+
+
+0.25 (2016-10-25)
=================
Features added
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index b23af122e..35cb15ffc 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.25"
+__version__ = "0.25.1b0"
try:
from __builtin__ import basestring