diff --git a/ntex-compio/CHANGES.md b/ntex-compio/CHANGES.md index e31f8cc6..22be3520 100644 --- a/ntex-compio/CHANGES.md +++ b/ntex-compio/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.2.2] - 2024-11-25 + +* Update to compio 0.13 + ## [0.2.1] - 2024-10-31 * It's not required to close compio sockets explicitly #444 diff --git a/ntex-compio/Cargo.toml b/ntex-compio/Cargo.toml index 4799ff8f..3cb05b7f 100644 --- a/ntex-compio/Cargo.toml +++ b/ntex-compio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-compio" -version = "0.2.1" +version = "0.2.2" authors = ["ntex contributors "] description = "compio runtime intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -21,4 +21,4 @@ ntex-bytes = "0.1" ntex-io = "2.5" ntex-util = "2" log = "0.4" -compio = { version = "0.12.0", features = ["macros", "io", "runtime"] } +compio = { version = "0.13.0", features = ["macros", "io", "runtime"] } diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index a26f2071..3ffecc3a 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -35,11 +35,11 @@ ntex-service = "3.3" ntex-bytes = "0.1" ntex-http = "0.1" ntex-io = "2.8" -ntex-rt = "0.4.18" +ntex-rt = "0.4.21" ntex-util = "2.5" ntex-tokio = { version = "0.5.3", optional = true } -ntex-compio = { version = "0.2.1", optional = true } +ntex-compio = { version = "0.2.2", optional = true } ntex-glommio = { version = "0.5.2", optional = true } ntex-async-std = { version = "0.5.1", optional = true } diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index c2201fe0..639a2cd2 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.21] - 2024-11-25 + +* Update to compio 0.13 + ## [0.4.20] - 2024-10-17 * Allow to skip runtime feature for clippy run diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 08b5d49d..1c5fd258 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.20" +version = "0.4.21" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] @@ -39,7 +39,7 @@ log = "0.4" oneshot = "0.1" async_std = { version = "1", package = "async-std", optional = true } -comp-io = { version = "0.12", package = "compio", default-features = false, features = [ +comp-io = { version = "0.13", 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 a2490d51..0359e7e5 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -70,7 +70,7 @@ ntex-util = "2.5" ntex-bytes = "0.1.27" ntex-server = "2.5" ntex-h2 = "1.4" -ntex-rt = "0.4.19" +ntex-rt = "0.4.21" ntex-io = "2.8" ntex-net = "2.4" ntex-tls = "2.3"