Skip to content

Commit

Permalink
Bumped version to 0.12.2 and updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
fpagliughi committed Sep 12, 2023
1 parent 25f9dcd commit 2d9267e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "paho-mqtt"
version = "0.12.1"
version = "0.12.2"
edition = "2021"
rust-version = "1.63"
authors = ["Frank Pagliughi <fpagliughi@mindspring.com>"]
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
//! ...
//! ```

Expand Down

0 comments on commit 2d9267e

Please sign in to comment.