diff --git a/CHANGELOG.md b/CHANGELOG.md index 94c936b..3c9811b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.12.2](https://github.com/eclipse/paho.mqtt.rust/compare/v0.12.0..v0.12.1) - 2023-09-12 + +- [#209](https://github.com/eclipse/paho.mqtt.rust/issues/209) Added trace/log statements from the Paho C library to the Rust logs +- Minor cleanup of subscriber examples. + + ## [v0.12.1](https://github.com/eclipse/paho.mqtt.rust/compare/v0.12.0..v0.12.1) - 2023-03-20 - [#191](https://github.com/eclipse/paho.mqtt.rust/pull/191) AsyncClient::get_stream() support unbounded channel diff --git a/Cargo.toml b/Cargo.toml index d9b06b0..b92d5c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paho-mqtt" -version = "0.12.1" +version = "0.12.2" edition = "2021" rust-version = "1.63" authors = ["Frank Pagliughi "] diff --git a/src/lib.rs b/src/lib.rs index 8586322..b0f8eee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -65,10 +65,10 @@ //! ```text //! $ RUST_LOG="pago_mqtt=info,paho_mqtt_c=debug" ./target/debug/examples/async_subscribe //! Connecting to the MQTT server at 'mqtt://localhost:1883'... -//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::async_client] ========================================================= -//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::async_client] Trace Output -//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::async_client] Product name: Eclipse Paho Asynchronous MQTT C Client Library -//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::async_client] Version: 1.3.11 +//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::c_trace] ========================================================= +//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::c_trace] Trace Output +//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::c_trace] Product name: Eclipse Paho Asynchronous MQTT C Client Library +//! [2023-09-11T13:26:18Z DEBUG paho_mqtt::c_trace] Version: 1.3.11 //! ... //! ```