summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@google.com>2016-10-25 10:37:09 -0700
committerRobert Bradshaw <robertwb@google.com>2016-10-25 10:37:09 -0700
commitf568e1463e4dc9d45325713cce740ace182d7874 (patch)
treed203a103da89c2f59110e44626bc224d910c3f4d
parentd8c5467133aa16c3eccb19427c41a62a51115837 (diff)
downloadcython-0.25.tar.gz
Cython 0.25 release0.25
-rw-r--r--CHANGES.rst6
-rw-r--r--Cython/Shadow.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 6576351b9..129f965b6 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-0.25 (2016-??-??)
+0.25 (2016-10-25)
=================
Features added
@@ -53,8 +53,8 @@ Features added
* Support for bazel using a the pyx_library rule in //Tools:rules.bzl.
-Bugs fixed
-----------
+Significant Bugs fixed
+----------------------
* Division of complex numbers avoids overflow by using Smith's method.
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index b6aa171d4..b23af122e 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.25b2"
+__version__ = "0.25"
try:
from __builtin__ import basestring