diff --git a/CHANGELOG.md b/CHANGELOG.md index a40b5e40e..64d4c8818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v0.2.2 (March 3, 2020) + +- **Features**: + - Implement `Reply` for all `Box` where `T: Reply`. + - Add `name` methods to `MissingHeader`, `InvalidHeader`, and `MissingCookie` rejections. + - Add `warp::ext::optional()` filter that optionally retrieves an extension from the request. +- **Fixes**: + - Fix the sending of pings when a user sends a `ws::Message::ping()`. + ### v0.2.1 (January 23, 2020) - **Features**: diff --git a/Cargo.toml b/Cargo.toml index 13d2c4807..e9f327e97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.2.1" # don't forget to update html_root_url +version = "0.2.2" # don't forget to update html_root_url description = "serve the web at warp speeds" authors = ["Sean McArthur "] license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 40a9580f9..241ce8443 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.2.1")] +#![doc(html_root_url = "https://docs.rs/warp/0.2.2")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]