Skip to content

Commit 96ca47c

Browse files
authored
Prepare ntex release (#767)
1 parent 8a3e819 commit 96ca47c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ntex-macros = { path = "ntex-macros" }
5151
ntex-util = { path = "ntex-util" }
5252

5353
[workspace.dependencies]
54-
ntex = "3.3.0"
54+
ntex = "3.4.0"
5555
ntex-bytes = "1.5.0"
5656
ntex-codec = "1.1.0"
5757
ntex-io = "3.9.0"

ntex-service/src/cfg.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,5 +431,9 @@ mod tests {
431431
let t2 = t.clone();
432432
assert_eq!(t2.id(), cfg.id());
433433
assert_eq!(t2.tag(), "TEST4");
434+
435+
let t3 = t.ctx().get::<TestCfg>();
436+
assert_eq!(t3.id(), cfg.id());
437+
assert_eq!(t3.tag(), "TEST4");
434438
}
435439
}

ntex/CHANGES.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changes
22

3-
## [3.4.0] - 2026-02-16
3+
## [3.4.0] - 2026-02-17
4+
5+
* Propagate shutdown to user service from `ws::start` #765
46

57
* SharedCfg is not Copy
68

ntex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntex"
3-
version = "3.3.0"
3+
version = "3.4.0"
44
authors = ["ntex contributors <team@ntex.rs>"]
55
description = "Framework for composable network services"
66
readme = "README.md"

0 commit comments

Comments
 (0)