Skip to content

Commit

Permalink
fix(disconnect): make DisconnectProperties struct public (#867)
Browse files Browse the repository at this point in the history
* fix(disconnect): make `DisconnectProperties` struct public

* docs(changelog): add note about change
  • Loading branch information
arunanshub authored May 21, 2024
1 parent b845a5b commit a63379e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions rumqttc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* rename `N` as `AsyncReadWrite` to describe usage.
* use `Framed` to encode/decode MQTT packets.
* use `Login` to store credentials
* Made `DisconnectProperties` struct public.

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion rumqttc/src/v5/mqttbytes/v5/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub use self::{
codec::Codec,
connack::{ConnAck, ConnAckProperties, ConnectReturnCode},
connect::{Connect, ConnectProperties, LastWill, LastWillProperties, Login},
disconnect::{Disconnect, DisconnectReasonCode},
disconnect::{Disconnect, DisconnectProperties, DisconnectReasonCode},
ping::{PingReq, PingResp},
puback::{PubAck, PubAckProperties, PubAckReason},
pubcomp::{PubComp, PubCompProperties, PubCompReason},
Expand Down

0 comments on commit a63379e

Please sign in to comment.