Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 68137f3

Browse files
Merge pull request python-llfuse#92 from ThomasWaldmann/rel150
release 1.5.0
2 parents 113f90d + e438084 commit 68137f3

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ doc/doctrees
88
src/llfuse.c
99
src/llfuse*.so
1010
.idea
11-
11+
.pytest_cache

Changes.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@
66

77
**WARNING**: Python-LLFUSE is no longer actively developed.
88

9+
Release 1.5.0 (2023-08-08)
10+
==========================
11+
12+
- Note: this is first pyfuse3 release supporting the Cython 3.0.0 release.
13+
- Cythonized using Cython 3.0.0 release.
14+
- Drop Python 3.5, 3.6, 3.7 support, see #69.
15+
Minimum requirement is Python 3.8 now.
16+
- Get rid of PyEval_InitThreads, #55.
17+
- CI: also test on python 3.12 / cython 3.0 release
18+
- Tell Cython that callbacks may raise exceptions, #90.
19+
- Misc. CI, testing, build related fixes/improvements.
20+
21+
922
Release 1.4.4 (2023-05-21)
1023
==========================
1124

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ graft rst
77
graft util
88
graft test
99
prune test/.cache
10+
prune test/.pytest_cache
1011
exclude MANIFEST.in
1112
recursive-include src *.pyx *.pxi *.c *.h
1213
global-exclude *.pyc

rst/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '1.4.4'
62+
version = '1.5.0'
6363
# The full version, including alpha/beta/rc tags.
6464
release = version + ''
6565

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
warnings.simplefilter('default')
4848

4949

50-
LLFUSE_VERSION = '1.4.4'
50+
LLFUSE_VERSION = '1.5.0'
5151

5252
def main():
5353

0 commit comments

Comments
 (0)