From 24daa8bb9c30feab53114c63b6366a49b2e5a9b8 Mon Sep 17 00:00:00 2001 From: Richard Bradfield Date: Wed, 12 Oct 2022 16:35:12 +0100 Subject: [PATCH] Release v3.6.1 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"