From df5bf9f708a60e8e37c2067bc47f9799b32bcb87 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Sat, 6 Apr 2024 12:57:43 +0200 Subject: [PATCH] Release v0.1.9 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8e3b79..8b441a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v0.1.9 + +* Added `Config::disable` which enables `IORING_SETUP_R_DISABLED` + . +* Added `Ring::enable` which enables a disable ring + . +* Added `Config::single_issuer` which enables `IORING_SETUP_SINGLE_ISSUER`, + which is no longer set by default + . +* Added `Config::defer_task_run` which enables `IORING_SETUP_DEFER_TASKRUN` + . + # v0.1.8 * Make BufGroupId and BufIdx public, but still hide them from the docs diff --git a/Cargo.toml b/Cargo.toml index c351e58..02f9db1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "a10" description = "A10 is an io_uring library." -version = "0.1.8" +version = "0.1.9" authors = ["Thomas de Zeeuw "] license = "MIT" documentation = "https://docs.rs/a10"