diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bfc658..f34ba72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/stevent-team/favicon-rover/compare/v0.1.1...v0.1.2) - 2023-12-24 + +### Other +- Document how fonts are loaded +- Add call to load fonts from pwd when starting server +- Explicitly load /usr/share/fonts +- Add debug for fonts +- Add additional tracing +- Use specific arial font family for fallback generation +- Store reqwest client in axum state +- Restructure modules to centralise favicon utils + ## [0.1.1](https://github.com/stevent-team/favicon-rover/compare/v0.1.0...v0.1.1) - 2023-12-20 ### Other diff --git a/Cargo.lock b/Cargo.lock index b9497f8..a32d07c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "favicon-rover" -version = "0.1.1" +version = "0.1.2" dependencies = [ "accept-header", "axum", diff --git a/Cargo.toml b/Cargo.toml index fb2cec5..4063136 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "favicon-rover" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "A web service and CLI tool to fetch the favicon of any website" keywords = ["favicon", "scraper", "icon"]