From ea75ce8f862bc9ed92dc8233eca428fc47e57854 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 09:16:50 +0000 Subject: [PATCH] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7bfc658 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/stevent-team/favicon-rover/compare/v0.1.0...v0.1.1) - 2023-12-20 + +### Other +- Add an important comment +- Exclude fallback code without server feature +- Run CI with all features +- Send cache control header +- Use EnvFilter for tracing +- Implement CORS protection +- Render SVG favicons +- Convert to image format based on Accept header +- Refactor favicon responses +- Generate fallback initial code +- Add webp codec support +- Create FaviconImage wrapper for image +- Setup cargo feature for server +- Implement writing images to stdout and files +- Wrap image structs in custom Image struct +- Correctly call .await on fallback +- Correctly call .await on fallback +- Continue working on fetching favicons +- Add a scrape_link_tags fn diff --git a/Cargo.lock b/Cargo.lock index e939d93..b9497f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "favicon-rover" -version = "0.1.0" +version = "0.1.1" dependencies = [ "accept-header", "axum", diff --git a/Cargo.toml b/Cargo.toml index dfc4dc7..7c3a197 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "favicon-rover" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "A web service and CLI tool to fetch the favicon of any website" keywords = ["favicon", "scraper", "icon"]