14
0
forked from pool/python-Cython

- update to 0.29.7

* 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
 * Resolved a C89 compilation problem when enabling the fast-gil sharing feature.
 * Coverage reporting did not include the signature line of cdef functions
 * Casting a GIL-requiring function into a nogil function now issues a warning
 * Generators and coroutines were missing their return type annotation

- update to 0.29.7
 * 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
 * Resolved a C89 compilation problem when enabling the fast-gil sharing feature.
 * Coverage reporting did not include the signature line of cdef functions
 * Casting a GIL-requiring function into a nogil function now issues a warning
 * Generators and coroutines were missing their return type annotation

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=124
This commit is contained in:
2019-04-16 09:29:07 +00:00
committed by Git OBS Bridge
parent 6c016720d7
commit 85ac2280ed
6 changed files with 29 additions and 5 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Apr 16 09:26:50 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.29.7
* 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
* Resolved a C89 compilation problem when enabling the fast-gil sharing feature.
* Coverage reporting did not include the signature line of cdef functions
* Casting a GIL-requiring function into a nogil function now issues a warning
* Generators and coroutines were missing their return type annotation
-------------------------------------------------------------------
Tue Apr 2 16:08:29 UTC 2019 - Todd R <toddrme2178@gmail.com>