From 06cdb5cbb634d9d4ef934bfa1125ab59a344c166 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Fri, 22 Apr 2022 00:36:06 +0530 Subject: [PATCH] R12 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 4 ++-- rumqttc/Cargo.toml | 2 +- rumqttd/Cargo.toml | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9eef9cae..ba718d771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### R11 +---------------- +rumqttc v0.12.0 +----------- +- Enable compilation without `rustls` as a dependency using `--no-default-features` (#365) +- Rework variants of `ConnectionError` (#370) +- New constructor `MqttOptions::parse()` using [`url`](https://docs.rs/url) (#379) +- Use `get_mut()` instead of index based access to ensure no panic (#384) +- Better error messages (#385) + +rumqttd v0.11.0 +----------- +- Enable compilation without rustls as a dependency using `--no-default-features` (#365) +- Better error messages (#385) +----------- + ### R11 ---------------- rumqttc v0.11.0 diff --git a/Cargo.lock b/Cargo.lock index 5fe706e4d..d2bc02c3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1644,7 +1644,7 @@ dependencies = [ [[package]] name = "rumqttc" -version = "0.11.0" +version = "0.12.0" dependencies = [ "async-channel", "async-tungstenite", @@ -1672,7 +1672,7 @@ dependencies = [ [[package]] name = "rumqttd" -version = "0.10.0" +version = "0.11.0" dependencies = [ "argh", "bytes 1.1.0", diff --git a/rumqttc/Cargo.toml b/rumqttc/Cargo.toml index e9951d144..f8fe525b5 100644 --- a/rumqttc/Cargo.toml +++ b/rumqttc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rumqttc" -version = "0.11.0" +version = "0.12.0" description = "An efficient and robust mqtt client for your connected devices" license = "Apache-2.0" repository = "https://github.com/bytebeamio/rumqtt" diff --git a/rumqttd/Cargo.toml b/rumqttd/Cargo.toml index 372c3d67f..ff31cc087 100644 --- a/rumqttd/Cargo.toml +++ b/rumqttd/Cargo.toml @@ -2,7 +2,7 @@ name = "rumqttd" description = "Distributed, embeddable mqtt broker library" license = "Apache-2.0" -version = "0.10.0" +version = "0.11.0" authors = ["tekjar "] edition = "2018" keywords = ["mqtt", "broker", "iot", "kafka", "nats"]