summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-12-08 13:30:15 -0800
committerRobert Bradshaw <robertwb@gmail.com>2016-12-08 13:30:15 -0800
commitc9bcf1bed3acf367d6deb0c273cf22db0f18dab2 (patch)
tree38db5a0862e5bdffdbcb50fbdabe62876fab8a9a
parent59c4b9225a14f20ed2bf4d1b49c9c6124185f493 (diff)
downloadcython-c9bcf1bed3acf367d6deb0c273cf22db0f18dab2.tar.gz
Release notes, version bump.0.25.2
-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 44b57f24c..10d3b2ae3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-0.25.2 (2016-12-xx)
+0.25.2 (2016-12-08)
===================
Bugs fixed
@@ -16,6 +16,8 @@ Bugs fixed
* Fixed or silenced many Clang warnings.
+* Fixes bug with powers of pure real complex numbers (Github issue #1538).
+
0.25.1 (2016-10-26)
===================
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 06fa9bff3..6828376bd 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.2rc0"
+__version__ = "0.25.2"
try:
from __builtin__ import basestring