Commit 3b3bcbfc authored by Stefan Behnel's avatar Stefan Behnel

Prepare release of 0.29.7.

parent 20685877
...@@ -2,12 +2,19 @@ ...@@ -2,12 +2,19 @@
Cython Changelog Cython Changelog
================ ================
0.29.7 (2019-0?-??) 0.29.7 (2019-04-14)
=================== ===================
Bugs fixed Bugs fixed
---------- ----------
* Crash when the shared Cython config module gets unloaded and another Cython
module reports an exceptions. Cython now makes sure it keeps an owned reference
to the module.
(Github issue #2885)
* Resolved a C89 compilation problem when enabling the fast-gil sharing feature.
* Coverage reporting did not include the signature line of ``cdef`` functions. * Coverage reporting did not include the signature line of ``cdef`` functions.
(Github issue #1461) (Github issue #1461)
......
# cython.* namespace for pure mode. # cython.* namespace for pure mode.
from __future__ import absolute_import from __future__ import absolute_import
__version__ = "0.29.6" __version__ = "0.29.7"
try: try:
from __builtin__ import basestring from __builtin__ import basestring
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment