summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-11-03 08:23:36 +0100
committerStefan Behnel <stefan_ml@behnel.de>2017-11-03 08:23:36 +0100
commit6bc74386b6d5198f86eb9509a858717a081e4efa (patch)
tree68482dc9421d4e25e640c1471bfffdd98a06bd45
parent2ba0d3ca326011f93583104502692eea83c4939e (diff)
downloadcython-6bc74386b6d5198f86eb9509a858717a081e4efa.tar.gz
Prepare release of 0.27.3.
-rw-r--r--CHANGES.rst4
-rw-r--r--Cython/Shadow.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index f8f0d2e4d..e4ac35e7a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-0.27.3 (2017-??-??)
+0.27.3 (2017-11-03)
===================
Bugs fixed
@@ -12,7 +12,7 @@ Bugs fixed
failed to find the named type. (Github issue #1962)
* NumPy slicing generated incorrect results when compiled with Pythran.
- (Github issue #1946)
+ Original patch by Serge Guelton (Github issue #1946).
* Fix "undefined reference" linker error for generators on Windows in Py3.3-3.5.
(Github issue #1968)
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 0dc731cc8..c25fc4954 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.27.2"
+__version__ = "0.27.3"
try:
from __builtin__ import basestring