diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a581a864..179c3c33 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "toad": "0.14.0", + "toad": "0.15.0", "toad-msg": "0.12.3", "toad-common": "0.14.0", "toad-macros": "0.2.1" diff --git a/toad/CHANGELOG.md b/toad/CHANGELOG.md index e506459e..f4f49cf7 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.15.0](https://github.com/toad-lib/toad/compare/toad-v0.14.0...toad-v0.15.0) (2023-02-07) + + +### Features + +* add server method filters ([#217](https://github.com/toad-lib/toad/issues/217)) ([0ec28c7](https://github.com/toad-lib/toad/commit/0ec28c71ef9ef09021ba5b903f8cecc9c8e2b9ac)) + ## [0.14.0](https://github.com/toad-lib/toad/compare/toad-v0.13.0...toad-v0.14.0) (2023-02-06) diff --git a/toad/Cargo.toml b/toad/Cargo.toml index 5b2fa6c4..4215bf94 100644 --- a/toad/Cargo.toml +++ b/toad/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toad" -version = "0.14.0" +version = "0.15.0" 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 c71534b2..8c543000 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.14.0")] +#![doc(html_root_url = "https://docs.rs/toad/0.15.0")] // x-release-please-end #![cfg_attr(any(docsrs, feature = "docs"), feature(doc_cfg))] // -