diff --git a/CHANGELOG.md b/CHANGELOG.md index 3beb6acf7..9f6c86fde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## v0.3.0 (January 19, 2021) + +- **Features**: + - Add TLS client authentication support. + - Add TLS OCSP stapling support. + - Add `From` for `Rejection`. + - Add `close_frame` accessor to `ws::Message`. +- **Changes**: + - Update to Tokio v1. + - Update to Bytes v1. + - Update to hyper v0.14. + - Rework `sse` filter to be more like `ws`, with a single `Event` type and builder. + - Change `cookie` filter to extract a generic `FromStr` value. + + ### v0.2.5 (August 31, 2020) - **Features**: diff --git a/Cargo.toml b/Cargo.toml index 5452c6b00..2670ace82 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.2.5" # don't forget to update html_root_url +version = "0.3.0" # don't forget to update html_root_url description = "serve the web at warp speeds" authors = ["Sean McArthur "] license = "MIT" diff --git a/README.md b/README.md index b10304adf..0f6559407 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ Since it builds on top of [hyper](https://hyper.rs), you automatically get: Add warp and Tokio to your dependencies: ```toml -tokio = { version = "0.2", features = ["full"] } -warp = "0.2" +tokio = { version = "1", features = ["full"] } +warp = "0.3" ``` And then get started in your `main.rs`: diff --git a/src/lib.rs b/src/lib.rs index bc1b16089..17b7c2d33 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.2.5")] +#![doc(html_root_url = "https://docs.rs/warp/0.3.0")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]