diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index 90e2c256..a4982e09 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.3.1] - 2021-08-28 + +* Re-export time as different module + ## [0.3.0] - 2021-08-27 * Do not use/re-export tokio::time::Instant diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 7b960f85..a3c8082d 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.3.0" +version = "0.3.1" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 3abb400a..2a36f2d0 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -44,7 +44,7 @@ http-framework = ["h2", "http", "httparse", [dependencies] ntex-codec = "0.5.0" -ntex-rt = "0.3.0" +ntex-rt = "0.3.1" ntex-router = "0.5.1" ntex-service = "0.2.0-b.0" ntex-macros = "0.1.3"