Skip to content

Commit

Permalink
Prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jan 9, 2024
1 parent 8dc65c4 commit 480b8ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-mqtt"
version = "1.0.0-b.0"
version = "1.0.0"
authors = ["ntex contributors <[email protected]>"]
description = "Client and Server framework for MQTT v5 and v3.1.1 protocols"
documentation = "https://docs.rs/ntex-mqtt"
Expand All @@ -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"
Expand All @@ -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"] }

0 comments on commit 480b8ef

Please sign in to comment.