Skip to content

Commit a8d074e

Browse files
committed
release: make new release to account for trap_error changes.
1 parent 4d2f81b commit a8d074e

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ for k, v in liburing.probe().items():
7777
from liburing import O_CREAT, O_RDWR, Ring, Cqe, io_uring_get_sqe, \
7878
io_uring_prep_open, io_uring_prep_write, io_uring_prep_read, \
7979
io_uring_prep_close, io_uring_submit, io_uring_wait_cqe, \
80-
io_uring_cqe_seen, io_uring_queue_init, io_uring_queue_exit, trap_error
80+
io_uring_cqe_seen, io_uring_queue_init, io_uring_queue_exit
8181

8282

8383
def open(ring, cqe, path, flags):

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .liburing,
3-
.version = "2026.3.26",
3+
.version = "2026.3.30",
44
.fingerprint = 0x26de882ff0030dfe,
55
.dependencies = .{
66
.PyOZ = .{

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "pyoz.backend"
66
name = "liburing"
77
readme = "README.md"
88
license = "CC0-1.0"
9-
version = "2026.3.26"
9+
version = "2026.3.30"
1010
authors = [{name="Ritesh"}]
1111
keywords = ["python", "socket", "async", "cython", "file", "python3", "io", "syscall", "futex", "statx",
1212
"io-uring", "uring", "liburing"]

src/liburing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from .version import * # noqa
33

44

5-
__version__ = "2026.3.26"
5+
__version__ = "2026.3.30"

0 commit comments

Comments
 (0)