diff --git a/CHANGELOG.md b/CHANGELOG.md index f34ba72..4ab28d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/stevent-team/favicon-rover/compare/v0.1.2...v0.1.3) - 2024-08-05 + +### Other +- Remove error check for infallible image output format conversion +- Remove unused `ImageFormatContentTypeExt` trait +- Convert image data to supported format before encoding as webp + ## [0.1.2](https://github.com/stevent-team/favicon-rover/compare/v0.1.1...v0.1.2) - 2023-12-24 ### Other diff --git a/Cargo.lock b/Cargo.lock index a32d07c..0085048 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "favicon-rover" -version = "0.1.2" +version = "0.1.3" dependencies = [ "accept-header", "axum", diff --git a/Cargo.toml b/Cargo.toml index 4063136..b38c9df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "favicon-rover" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "A web service and CLI tool to fetch the favicon of any website" keywords = ["favicon", "scraper", "icon"]