diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index 415bea7e..1dcb4e05 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,13 +1,17 @@ # Changes -## [0.4.25] - 2025-03-10 +## [0.4.26] - 2025-03-xx -* Add "ntex-runtime" support +* Add "neon" runtime support * Drop glommio support * Drop async-std support +## [0.4.25] - 2025-03-11 + +* Adds Send bound to arbiter exec (#514) + ## [0.4.24] - 2025-01-03 * Relax runtime requirements diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 1967fd6f..3caa90d4 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.25" +version = "0.4.26" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 5e95d26e..8b685f93 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -67,7 +67,7 @@ ntex-util = "2.8" ntex-bytes = "0.1.27" ntex-server = "2.7" ntex-h2 = "1.8.1" -ntex-rt = "0.4.25" +ntex-rt = "0.4.26" ntex-io = "2.11" ntex-net = "2.5" ntex-tls = "2.3"