From f520e88dd718e0af78b2925800daeeb6e1522f84 Mon Sep 17 00:00:00 2001 From: jamescarterbell <38409055+jamescarterbell@users.noreply.github.com> Date: Tue, 11 Mar 2025 05:39:22 -0400 Subject: [PATCH 1/2] Adds send bound to arbiter exec (#514) Co-authored-by: James Bell --- ntex-rt/src/arbiter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntex-rt/src/arbiter.rs b/ntex-rt/src/arbiter.rs index bdf0e100..1ce2c409 100644 --- a/ntex-rt/src/arbiter.rs +++ b/ntex-rt/src/arbiter.rs @@ -157,7 +157,7 @@ impl Arbiter { /// Send a function to the Arbiter's thread. This function will be executed asynchronously. /// A future is created, and when resolved will contain the result of the function sent /// to the Arbiters thread. - pub fn exec(&self, f: F) -> impl Future> + pub fn exec(&self, f: F) -> impl Future> + Send + 'static where F: FnOnce() -> R + Send + 'static, R: Send + 'static, From 6a0aa3350492c5dacc8fe30a5fdd2cbe0f1492b5 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Tue, 11 Mar 2025 14:41:39 +0500 Subject: [PATCH 2/2] Prepare release --- ntex-rt/CHANGES.md | 4 ++++ ntex-rt/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index 536a64ca..0e911638 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [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 92b15284..d64dc261 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.24" +version = "0.4.25" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"]