diff --git a/CHANGES.md b/CHANGES.md index b5aca2d..f04d603 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.8.0] - 2023-06-xx +## [0.8.0-beta.0] - 2023-06-17 * Migrate to ntex-0.7 diff --git a/Cargo.toml b/Cargo.toml index 8c85ac7..df314ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-amqp" -version = "0.8.0" +version = "0.8.0-beta.0" authors = ["ntex contributors "] description = "AMQP 1.0 Client/Server framework" documentation = "https://docs.rs/ntex-amqp" @@ -24,7 +24,7 @@ default = [] frame-trace = [] [dependencies] -ntex = "0.7.0" +ntex = "0.7.0-beta.0" ntex-amqp-codec = "0.9.0" bitflags = "1.3" @@ -36,17 +36,8 @@ uuid = { version = "1.3", features = ["v4"] } [dev-dependencies] env_logger = "0.10" -ntex = { version = "0.7.0", features = ["tokio"] } +ntex = { version = "0.7.0-beta.0", features = ["tokio"] } [patch.crates-io] ntex-amqp = { path = "." } ntex-amqp-codec = { path = "codec" } - -ntex = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-service = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-util = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-tls = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-io = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-connect = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-tokio = { git = "https://github.com/ntex-rs/ntex.git" } -ntex-h2 = { git = "https://github.com/ntex-rs/ntex-h2.git" }