diff --git a/CHANGELOG.md b/CHANGELOG.md index b230a2c45..3f3e59bbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 3.3.1 +- Use `.strip_prefix` in place of `.starts_with` where appropriate, this stops a Clippy lint from + leaking out of our `router!` macro and into downstream code. + ## Version 3.3.0 - Bumped minimum supported Rust version to 1.48 - Added module-level documentation for `rouille::content_encoding` diff --git a/Cargo.toml b/Cargo.toml index 8ced87d18..4d0fd2669 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rouille" -version = "3.3.0" +version = "3.3.1" authors = ["Pierre Krieger "] license = "MIT/Apache-2.0" repository = "https://github.com/tomaka/rouille"