summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 da7607855..77d8d6262 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
Cython Changelog
================
-0.29.27 (2022-??-??)
+0.29.27 (2022-01-28)
====================
Features added
@@ -22,7 +22,7 @@ Bugs fixed
* Calls to ``range()`` with more than three arguments did not fail.
Original patch by Max Bachmann. (Github issue #4550)
-* A C compiler warning about missing type struct initialisers in Py3.10 was resolved.
+* Some C compiler warnings about missing type struct initialisers in Py3.10 were resolved.
* Cython no longer warns about using OpenMP 3.0 features since they are now
considered generally available.
diff --git a/Cython/Shadow.py b/Cython/Shadow.py
index 45fd1a0b6..e7b9e4f61 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.29.26"
+__version__ = "0.29.27"
try:
from __builtin__ import basestring