diff --git a/CHANGELOG.md b/CHANGELOG.md index c0ecb85f..72a759ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### v0.3.7 (April 5, 2024) + +- **Features**: + - Add ecc private key support to `tls()` config. +- **Fixes**: + - Several dependency upgrades. + ### v0.3.6 (September 27, 2023) - **Features**: diff --git a/Cargo.toml b/Cargo.toml index 6ad44e4b..5d426c0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warp" -version = "0.3.6" # don't forget to update html_root_url +version = "0.3.7" description = "serve the web at warp speeds" authors = ["Sean McArthur "] license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 35ed0dcd..f8d34566 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,3 @@ -#![doc(html_root_url = "https://docs.rs/warp/0.3.6")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![deny(rust_2018_idioms)]