Skip to content

Commit

Permalink
Update Cython version and prepare release of 0.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Mar 22, 2021
1 parent e05d0ac commit 33389c2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
fastrlock changelog
===================

0.6 (2021-03-21)
================

* Rebuild with Cython 0.29.22 to support Py3.9 and later.


0.5 (2020-06-05)
================

Expand Down
2 changes: 1 addition & 1 deletion fastrlock/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# this is a package

__version__ = "0.5"
__version__ = "0.6"


class LockNotAcquired(Exception):
Expand Down
1 change: 1 addition & 0 deletions fastrlock/rlock.pxd
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: language_level=3

cdef create_fastrlock()

Expand Down
1 change: 1 addition & 0 deletions fastrlock/rlock.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: language_level=3
# cython: binding=True

from cpython cimport pythread
Expand Down

0 comments on commit 33389c2

Please sign in to comment.