From ca1f4fb30d302138b1cf5a3cd4f37fa37075e7fe Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Tue, 25 Apr 2023 22:22:41 -0500 Subject: [PATCH] chore: release main (#338) --- .release-please-manifest.json | 2 +- toad/CHANGELOG.md | 7 +++++++ toad/Cargo.toml | 2 +- toad/src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 802234e..e608cae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "toad": "0.19.0", + "toad": "0.19.1", "toad-array": "0.5.0", "toad-common": "0.15.0", "toad-cursor": "0.2.0", diff --git a/toad/CHANGELOG.md b/toad/CHANGELOG.md index e91a814..6c0d330 100644 --- a/toad/CHANGELOG.md +++ b/toad/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.19.1](https://github.com/toad-lib/toad/compare/toad-v0.19.0...toad-v0.19.1) (2023-04-26) + + +### Bug Fixes + +* retry should drop state on RESET ([#337](https://github.com/toad-lib/toad/issues/337)) ([bf8924a](https://github.com/toad-lib/toad/commit/bf8924ae641863a937db3560892e3f125b0824a6)) + ## [0.19.0](https://github.com/toad-lib/toad/compare/toad-v0.18.0...toad-v0.19.0) (2023-04-26) diff --git a/toad/Cargo.toml b/toad/Cargo.toml index dab617d..d445583 100644 --- a/toad/Cargo.toml +++ b/toad/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toad" -version = "0.19.0" +version = "0.19.1" edition = "2021" description = "Universal implementation of the CoAP networking protocol" authors = ["Orion Kindel "] diff --git a/toad/src/lib.rs b/toad/src/lib.rs index 244dd9f..1a14b3f 100644 --- a/toad/src/lib.rs +++ b/toad/src/lib.rs @@ -24,7 +24,7 @@ //! - While _classes_ of status codes are the same (Success 2xx -> 2.xx, Client error 4xx -> 4.xx, Server error 5xx -> 5.xx), the semantics of the individual response codes differ. // x-release-please-start-version -#![doc(html_root_url = "https://docs.rs/toad/0.19.0")] +#![doc(html_root_url = "https://docs.rs/toad/0.19.1")] // x-release-please-end #![cfg_attr(any(docsrs, feature = "docs"), feature(doc_cfg))] // -