diff --git a/CHANGELOG.md b/CHANGELOG.md index af5bc022..0be469c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Version 3.6.2 +- Expose `new_ssl` feature for `rustls` support from `tiny-http`. +- Switch to `sha1-smol` for a smaller footprint, more stable hash library. +- Remove dependency on `num_cpus` using `std::thread::available_parallelism` instead. + ## Version 3.6.1 Reverts [Added a number of default features](https://github.com/tomaka/rouille/pull/254) as it breaks any downstreams diff --git a/Cargo.toml b/Cargo.toml index edd49d89..ab950e7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rouille" -version = "3.6.1" +version = "3.6.2" authors = ["Pierre Krieger "] license = "MIT/Apache-2.0" repository = "https://github.com/tomaka/rouille"