diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1f3ba198..bb1b6f9a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -7,7 +7,7 @@ "toad-len": "0.1.3", "toad-macros": "0.2.1", "toad-map": "0.2.3", - "toad-msg": "0.16.0", + "toad-msg": "0.17.0", "toad-result-ext": "0.0.0", "toad-stem": "0.1.0", "toad-writable": "0.1.1" diff --git a/toad-msg/CHANGELOG.md b/toad-msg/CHANGELOG.md index 2b55a43a..228ad30f 100644 --- a/toad-msg/CHANGELOG.md +++ b/toad-msg/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [0.17.0](https://github.com/toad-lib/toad/compare/toad-msg-v0.16.0...toad-msg-v0.17.0) (2023-03-20) + + +### Features + +* add block getters ([#264](https://github.com/toad-lib/toad/issues/264)) ([6dc24f3](https://github.com/toad-lib/toad/commit/6dc24f3abc7ec955651a66f3765b0f6127a48c64)) + ## [0.16.0](https://github.com/toad-lib/toad/compare/toad-msg-v0.15.1...toad-msg-v0.16.0) (2023-03-19) diff --git a/toad-msg/Cargo.toml b/toad-msg/Cargo.toml index 23de1f34..f7733b9c 100644 --- a/toad-msg/Cargo.toml +++ b/toad-msg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toad-msg" -version = "0.16.0" +version = "0.17.0" edition = "2021" description = "Low-level CoAP message parsing & serialization" authors = ["Orion Kindel "] diff --git a/toad-msg/src/lib.rs b/toad-msg/src/lib.rs index 44363203..358270d8 100644 --- a/toad-msg/src/lib.rs +++ b/toad-msg/src/lib.rs @@ -70,7 +70,7 @@ //! // x-release-please-start-version -#![doc(html_root_url = "https://docs.rs/toad-msg/0.16.0")] +#![doc(html_root_url = "https://docs.rs/toad-msg/0.17.0")] // x-release-please-end #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(test), forbid(missing_debug_implementations, unreachable_pub))]