From 4888094c5c777cce6cba377875255ccee8ff6680 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Thu, 16 Jun 2022 20:33:12 +0530 Subject: [PATCH] R13 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- rumqttc/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98f85229..1f727cdf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### R13 +---------------- +rumqttc v0.13.0 +----------- +- Add code in `rumqttc::v5`, moving towards support for operating the client with MQTT 5 (#351, #393, #398) +- Add missing `self.inflight += 1` in `MqttState.save_pubrel()` (#389) +- Error out when Subscription filter list is empty (#392) +- Make public `rumqttc::client::Iter` (#402) + +----------- + ### R12 ---------------- rumqttc v0.12.0 diff --git a/Cargo.lock b/Cargo.lock index ff987eb66..6ae1dd480 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1695,7 +1695,7 @@ dependencies = [ [[package]] name = "rumqttc" -version = "0.12.0" +version = "0.13.0" dependencies = [ "async-tungstenite", "bytes 1.1.0", diff --git a/rumqttc/Cargo.toml b/rumqttc/Cargo.toml index d90df7464..dcbc001ae 100644 --- a/rumqttc/Cargo.toml +++ b/rumqttc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rumqttc" -version = "0.12.0" +version = "0.13.0" description = "An efficient and robust mqtt client for your connected devices" license = "Apache-2.0" repository = "https://github.com/bytebeamio/rumqtt"