summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-12-06 03:19:29 -0800
committerRobert Bradshaw <robertwb@gmail.com>2016-12-06 03:19:38 -0800
commit70a543001e93525c6091eece5a075b9093415679 (patch)
treecdab6336ac3e3def2ed8edf0abfc73cab07051dd
parenta531a31c64f76cf5031f04b79b64f2cae66a116b (diff)
downloadcython-70a543001e93525c6091eece5a075b9093415679.tar.gz
Update release notes for 0.25.2b1.0.25.2b1
-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