From 480b8efd1fa49a5a46038ab327b66d4f68056fff Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 10 Jan 2024 00:25:04 +0600 Subject: [PATCH] Prep release --- CHANGES.md | 4 ++++ Cargo.toml | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7b40818..158a795 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [1.0.0] - 2024-01-09 + +* Release + ## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/Cargo.toml b/Cargo.toml index b3c55aa..b5d5c1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-mqtt" -version = "1.0.0-b.0" +version = "1.0.0" authors = ["ntex contributors "] description = "Client and Server framework for MQTT v5 and v3.1.1 protocols" documentation = "https://docs.rs/ntex-mqtt" @@ -15,7 +15,7 @@ edition = "2021" features = ["ntex/tokio"] [dependencies] -ntex = "1.0.0-b.1" +ntex = "1.0" bitflags = "2.4" log = "0.4" pin-project-lite = "0.2" @@ -25,9 +25,9 @@ thiserror = "1.0" [dev-dependencies] env_logger = "0.10" -ntex-tls = "1.0.0-b.1" +ntex-tls = "1.0" rustls = "0.21" rustls-pemfile = "1.0" openssl = "0.10" test-case = "3.2" -ntex = { version = "1.0.0-b.1", features = ["tokio", "rustls", "openssl"] } +ntex = { version = "1.0", features = ["tokio", "rustls", "openssl"] }