diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..bc784c8d1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +### v0.1.1 (August 7, 2018) + +- **Features**: + - add `warp::query::raw()` filter to get query as a `String`. + - add `Filter::recover()` to ease customizing of rejected responses. + - add `warp::header::headers_clone()` filter to get a clone of request's `HeaderMap`. + - add `warp::path::tail()` filter to get remaining "tail" of the request path. +- **Fixes**: + - URL decode path segments in `warp::fs` filters. + + +## v0.1.0 (August 1, 2018) + +- Intial release. diff --git a/Cargo.toml b/Cargo.toml index fd56a3847..702789c3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.1.0" # don't forget to update html_root_url +version = "0.1.1" # 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 5653d55ce..2fdef3c8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.1.0")] +#![doc(html_root_url = "https://docs.rs/warp/0.1.1")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]