diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e556d36..af5bc022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Version 3.6.1 + +Reverts [Added a number of default features](https://github.com/tomaka/rouille/pull/254) as it breaks any downstreams +who were specifying `default-features = false`. + ## Version 3.6.0 - Added [`rustls`](https://github.com/rustls/rustls) support (via `tiny-http`), if you're currently using the `ssl` feature you can switch from OpenSSL to Rustls by instead enabling the `rustls` feature in your `Cargo.toml`. diff --git a/Cargo.toml b/Cargo.toml index 13218c64..0d86a748 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rouille" -version = "3.6.0" +version = "3.6.1" authors = ["Pierre Krieger "] license = "MIT/Apache-2.0" repository = "https://github.com/tomaka/rouille"