diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index 43e839ac..02adb10b 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.8] - 2023-04-06 + +* Add enter/exit fn for spawn_cbs #195 + ## [0.4.7] - 2023-01-03 * Add callback for task spawning diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 679c4851..ebeaa1c4 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.7" +version = "0.4.8" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 15e7314f..5c943000 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -57,7 +57,7 @@ ntex-macros = "0.1.3" ntex-util = "0.2.0" ntex-bytes = "0.1.19" ntex-h2 = "0.2.1" -ntex-rt = "0.4.7" +ntex-rt = "0.4.8" ntex-io = "0.2.9" ntex-tls = "0.2.4" ntex-tokio = { version = "0.2.3", optional = true }