Skip to content

Commit

Permalink
Remove non_exhaustive marker
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed May 15, 2024
1 parent e70568b commit d540705
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [2.0.2] - 2024-05-15

* Remove non_exhaustive marker

## [2.0.1] - 2024-05-14

* Better naming
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-mqtt"
version = "2.0.1"
version = "2.0.2"
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 Down
1 change: 0 additions & 1 deletion src/v3/client/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pub use crate::v3::control::{Closed, ControlAck, Disconnect, Error, PeerGone, Pr
use crate::v3::{codec, control::ControlAckKind, error};

/// Client control messages
#[non_exhaustive]
#[derive(Debug)]
pub enum Control<E> {
/// Unhandled publish packet
Expand Down
1 change: 0 additions & 1 deletion src/v3/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use super::codec;
use crate::{error, types::QoS};

/// Server control messages
#[non_exhaustive]
#[derive(Debug)]
pub enum Control<E> {
/// Ping packet
Expand Down
1 change: 0 additions & 1 deletion src/v5/client/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use crate::{error, v5::codec};
pub use crate::v5::control::{Closed, ControlAck, Disconnect, Error, ProtocolError};

/// Client control messages
#[non_exhaustive]
#[derive(Debug)]
pub enum Control<E> {
/// Unhandled publish packet
Expand Down
1 change: 0 additions & 1 deletion src/v5/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use super::codec::{self, DisconnectReasonCode, QoS, UserProperties};
use crate::error;

/// Server control messages
#[non_exhaustive]
#[derive(Debug)]
pub enum Control<E> {
/// Auth packet from a client
Expand Down

0 comments on commit d540705

Please sign in to comment.