diff --git a/ntex-glommio/CHANGES.md b/ntex-glommio/CHANGES.md index 949d9022..30faefde 100644 --- a/ntex-glommio/CHANGES.md +++ b/ntex-glommio/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.5.2] - 2024-09-xx + +* Update to glommio v0.9 + ## [0.4.0] - 2024-01-09 * Release diff --git a/ntex-glommio/Cargo.toml b/ntex-glommio/Cargo.toml index cbb9b5bf..bb9ec0ed 100644 --- a/ntex-glommio/Cargo.toml +++ b/ntex-glommio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-glommio" -version = "0.5.1" +version = "0.5.2" authors = ["ntex contributors "] description = "glommio intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -24,4 +24,4 @@ log = "0.4" oneshot = { version = "0.1", default-features = false, features = ["async"] } [target.'cfg(target_os = "linux")'.dependencies] -glommio = "0.8" +glommio = "0.9" diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index aa022d80..52284c70 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.18] - 2024-09-xx + +* Update to glommio v0.9 + ## [0.4.17] - 2024-09-24 * Update to compio v0.12 diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 23b70bde..2045003c 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.17" +version = "0.4.18" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] @@ -46,5 +46,5 @@ tok-io = { version = "1", package = "tokio", default-features = false, features ], optional = true } [target.'cfg(target_os = "linux")'.dependencies] -glomm-io = { version = "0.8", package = "glommio", optional = true } +glomm-io = { version = "0.9", package = "glommio", optional = true } futures-channel = { version = "0.3", optional = true }