From b19938067691c3571dd58089d6c27d20bd4f7d0d Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 25 Sep 2018 19:28:30 -0700 Subject: [PATCH] v0.1.4 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1046796fd..f2e6bbf38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v0.1.4 (September 25, 2018) + +- **Features**: + - Add `warp::reply::with::headers(HeaderMap)` filter wrapper. + - Add `warp::cookie::optional()` to get an optional cookie value. + - Add `warp::path::full()` to be able to extract the full request path without affecting route matching. + - Add graceful shutdown support to the `Server`. + - Allow empty query strings to be treated as for `warp::query()`. + ### v0.1.3 (August 28, 2018) - **Features**: diff --git a/Cargo.toml b/Cargo.toml index 70c02e6f4..ba49c302f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.1.3" # don't forget to update html_root_url +version = "0.1.4" # 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 67ba7284b..ea72607d6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.1.3")] +#![doc(html_root_url = "https://docs.rs/warp/0.1.4")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]