From b50aa31fdcfb6a3c600f8e2d807bdae0cf85c29e Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Tue, 24 Sep 2024 12:37:26 +0500 Subject: [PATCH] Upgrade to compio v0.12 (#425) --- ntex-compio/CHANGES.md | 4 ++++ ntex-compio/Cargo.toml | 5 ++--- ntex-net/CHANGES.md | 4 ++++ ntex-net/Cargo.toml | 6 +++--- ntex-rt/CHANGES.md | 4 ++++ ntex-rt/Cargo.toml | 4 ++-- ntex/Cargo.toml | 4 ++-- 7 files changed, 21 insertions(+), 10 deletions(-) diff --git a/ntex-compio/CHANGES.md b/ntex-compio/CHANGES.md index e4b381bc..2f89245c 100644 --- a/ntex-compio/CHANGES.md +++ b/ntex-compio/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.2.0] - 2024-09-24 + +* Update to compio v0.12 + ## [0.1.2] - 2024-09-11 * Use new io api diff --git a/ntex-compio/Cargo.toml b/ntex-compio/Cargo.toml index 1b636070..f51c7ec1 100644 --- a/ntex-compio/Cargo.toml +++ b/ntex-compio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-compio" -version = "0.1.2" +version = "0.2.0" authors = ["ntex contributors "] description = "compio runtime intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -21,5 +21,4 @@ ntex-bytes = "0.1" ntex-io = "2.5" ntex-util = "2" log = "0.4" -compio-net = "0.4.1" -compio = { version = "0.11.0", features = ["macros", "io", "runtime"] } +compio = { version = "0.12.0", features = ["macros", "io", "runtime"] } diff --git a/ntex-net/CHANGES.md b/ntex-net/CHANGES.md index 1884305d..6de85354 100644 --- a/ntex-net/CHANGES.md +++ b/ntex-net/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [2.3.0] - 2024-09-24 + +* Update to compio v0.12 + ## [2.1.0] - 2024-08-29 * Add `compio` runtime support diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index 4f3e5117..b8156b0b 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-net" -version = "2.2.0" +version = "2.3.0" authors = ["ntex contributors "] description = "ntexwork utils for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -35,11 +35,11 @@ ntex-service = "3" ntex-bytes = "0.1" ntex-http = "0.1" ntex-io = "2.5" -ntex-rt = "0.4.14" +ntex-rt = "0.4.17" ntex-util = "2" ntex-tokio = { version = "0.5.2", optional = true } -ntex-compio = { version = "0.1.2", optional = true } +ntex-compio = { version = "0.2.0", optional = true } ntex-glommio = { version = "0.5.1", optional = true } ntex-async-std = { version = "0.5.1", optional = true } diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index c06e2d59..aa022d80 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.17] - 2024-09-24 + +* Update to compio v0.12 + ## [0.4.16] - 2024-09-02 * Allow to override block_on function diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index d5449dfc..23b70bde 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.16" +version = "0.4.17" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] @@ -37,7 +37,7 @@ log = "0.4" oneshot = "0.1" async_std = { version = "1", package = "async-std", optional = true } -comp-io = { version = "0.11", package = "compio", default-features = false, features = [ +comp-io = { version = "0.12", package = "compio", default-features = false, features = [ "runtime" ], optional = true } tok-io = { version = "1", package = "tokio", default-features = false, features = [ diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 7450e750..1deff700 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -70,9 +70,9 @@ ntex-util = "2" ntex-bytes = "0.1.27" ntex-server = "2.3" ntex-h2 = "1.1" -ntex-rt = "0.4.15" +ntex-rt = "0.4.17" ntex-io = "2.5" -ntex-net = "2.2" +ntex-net = "2.3" ntex-tls = "2.1" base64 = "0.22"