From cba76ce3a61660e93cd4505e4351ba98a1ccdd7e Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 6 Dec 2021 09:30:29 +0100 Subject: [PATCH 1/5] Updating docs for 0.5.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb8f19f..b049260 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ This document describes the changes to Minimq between releases. # Unreleased +## Added +## Removed +## Changed + +# Version 0.5.0 +Version 0.5.0 was published on 2021-12-06 + ## Added * Support for the `Will` message specification. * [breaking] Adding `retained` flag to `publish()` to allow messages to be published in a retained diff --git a/Cargo.toml b/Cargo.toml index 24f3ce0..8bbd0a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimq" -version = "0.4.0" +version = "0.5.0" authors = ["Ryan Summers ", "Max Rottenkolber "] edition = "2018" From f64835d58411da0bd1d5d166e81abc99b5e0d79b Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 6 Dec 2021 09:34:06 +0100 Subject: [PATCH 2/5] Updating docs --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 162c02e..7a3001a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,8 +8,7 @@ //! # Limitations //! This library does not currently support the following elements: //! * Quality-of-service `ExactlyOnce` -//! * Session timeouts -//! * Server keep alive timeouts (ping) +//! * Quality-of-service above `AtMostOnce` for inbound messages. //! * Bulk subscriptions //! * Server Authentication //! * Encryption From f52f6e05131dafa50aa5e312b9231eb8d4737c64 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 6 Dec 2021 10:03:04 +0100 Subject: [PATCH 3/5] Adding release labels to CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b049260..b8a6895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,3 +58,10 @@ Version 0.2.0 was published on 2021-02-15 Version 0.1.0 was published on 2020-08-27 * Initial library release and publish to crates.io + +[Unreleased]: https://github.com/quartiq/idsp/compare/0.5.0...HEAD +[0.5.0]: https://github.com/quartiq/idsp/releases/tag/0.5.0 +[0.4.0]: https://github.com/quartiq/idsp/releases/tag/0.4.0 +[0.3.0]: https://github.com/quartiq/idsp/releases/tag/0.3.0 +[0.2.0]: https://github.com/quartiq/idsp/releases/tag/0.2.0 +[0.1.0]: https://github.com/quartiq/idsp/releases/tag/0.1.0 From 3dfff902f6e474bf0f5f1fbf7fbb03e1bc0b9127 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 6 Dec 2021 10:04:06 +0100 Subject: [PATCH 4/5] Fixing links --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8a6895..817c2a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,13 @@ This document describes the changes to Minimq between releases. -# Unreleased +# [Unreleased] ## Added ## Removed ## Changed -# Version 0.5.0 +# Version [0.5.0] Version 0.5.0 was published on 2021-12-06 ## Added @@ -16,7 +16,7 @@ Version 0.5.0 was published on 2021-12-06 * [breaking] Adding `retained` flag to `publish()` to allow messages to be published in a retained manner. -# Version 0.4.0 +# Version [0.4.0] Version 0.4.0 was published on 2021-10-08 * Updating to `std-embedded-nal` v0.1 (dev dependency only; now again used for integration tests) @@ -28,7 +28,7 @@ keep-alive interval * Refactoring network stack management into a separate container class * Keep-alive settings now take a u16 integer number of seconds -# Version 0.3.0 +# Version [0.3.0] Version 0.3.0 was published on 2021-08-06 * Client ID may now be unspecified to allow the broker to automatically assign an ID. @@ -43,7 +43,7 @@ Version 0.3.0 was published on 2021-08-06 * Removing using of `generic-array` in favor of const-generics. * Correcting an issue where the client would not reconnect if the broker was restarted. -# Version 0.2.0 +# Version [0.2.0] Version 0.2.0 was published on 2021-02-15 * Updating the `MqttClient::poll()` function to take a `FnMut` closure to allow internal state @@ -54,7 +54,7 @@ Version 0.2.0 was published on 2021-02-15 stack errors out to the user. * Updating library to re-export `generic-array` publicly. -## Version 0.1.0 +## Version [0.1.0] Version 0.1.0 was published on 2020-08-27 * Initial library release and publish to crates.io From 989e717f4c1ff879df48e5dae2a67546d6c26135 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 6 Dec 2021 10:04:49 +0100 Subject: [PATCH 5/5] Fixing repo links --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 817c2a4..f512c54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,9 +59,9 @@ Version 0.1.0 was published on 2020-08-27 * Initial library release and publish to crates.io -[Unreleased]: https://github.com/quartiq/idsp/compare/0.5.0...HEAD -[0.5.0]: https://github.com/quartiq/idsp/releases/tag/0.5.0 -[0.4.0]: https://github.com/quartiq/idsp/releases/tag/0.4.0 -[0.3.0]: https://github.com/quartiq/idsp/releases/tag/0.3.0 -[0.2.0]: https://github.com/quartiq/idsp/releases/tag/0.2.0 -[0.1.0]: https://github.com/quartiq/idsp/releases/tag/0.1.0 +[Unreleased]: https://github.com/quartiq/minimq/compare/0.5.0...HEAD +[0.5.0]: https://github.com/quartiq/minimq/releases/tag/0.5.0 +[0.4.0]: https://github.com/quartiq/minimq/releases/tag/0.4.0 +[0.3.0]: https://github.com/quartiq/minimq/releases/tag/0.3.0 +[0.2.0]: https://github.com/quartiq/minimq/releases/tag/0.2.0 +[0.1.0]: https://github.com/quartiq/minimq/releases/tag/0.1.0