summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 2b8e13d93..44b57f24c 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,12 +2,14 @@
Cython Changelog
================
-0.25.2 (2016-11-xx)
+0.25.2 (2016-12-xx)
===================
Bugs fixed
----------
+* Fixes several issues with C++ template deduction.
+
* Fixes a issue with bound method type inference (Github issue #551).
* Fixes a bug with cascaded tuple assignment (Github issue #1523).
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index e36022553..0bbb415f8 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.2b0"
+__version__ = "0.25.2b1"
try:
from __builtin__ import basestring