From f9515420bfc3b8894e0d8fee430e28ea56d260bc Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Fri, 6 Oct 2023 15:53:06 +0900 Subject: [PATCH] chore(release): prepare for v0.1.8 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a7dead..307de79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file. +## [0.1.8](https://github.com/dnaka91/llvm-cov-pretty/compare/v0.1.7...v0.1.8) - 2023-10-06 + +### ⛰️ Features + +- Allow to control the report's output directory ([458ede9](https://github.com/dnaka91/llvm-cov-pretty/commit/458ede98a235693ef7af80d913a744587b9e29d3)) + > A new CLI flag that allows to save the report to a user-defined + > directory instead of the default `target/llvm-cov-pretty` location. + > + > Caution should be taken as there is no additional logic for non-empty + > directories. The target directory will be fully wiped in the process of + > generating the report, without prior confirmation. +- Enable auto-wrapping of CLI help messages ([86cd5c7](https://github.com/dnaka91/llvm-cov-pretty/commit/86cd5c7ad853570095e5aa0aec2fff39ce9b6c7e)) + > By enabling clap's `wrap_help` feature, the help output is now nicely + > aligned to the terminal wraps, which makes it easier to read in case of + > longer help messages. + +### 🐛 Bug Fixes + +- Set link for first uncovered line ([481434a](https://github.com/dnaka91/llvm-cov-pretty/commit/481434a271553ce5fea32bb1efe442a46611776b)) + > A link tag existed that should move to the first uncovered line in + > source view, but it never contained a proper working URL. + > + > Also, the link won't be generated anymore if there aren't any uncovered + > lines in the file. + +### 📚 Documentation + +- Correct the repo URL of links in CHANGELOG.md ([178b848](https://github.com/dnaka91/llvm-cov-pretty/commit/178b84814997666d52fefbc533f902171000173a)) + > In the previous improvement of the changelog format, the wrong + > repository URL slipped in the settings as the file was copied over from + > another project. This resulted in all link to point to the wrong + > location. + ## [0.1.7](https://github.com/dnaka91/llvm-cov-pretty/compare/v0.1.6...v0.1.7) - 2023-09-25 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 5f7daa2..3c5f706 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -563,7 +563,7 @@ checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" [[package]] name = "llvm-cov-pretty" -version = "0.1.7" +version = "0.1.8" dependencies = [ "askama", "askama_escape", diff --git a/Cargo.toml b/Cargo.toml index 1c012af..69b63a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llvm-cov-pretty" -version = "0.1.7" +version = "0.1.8" authors = ["Dominik Nakamura "] edition = "2021" description = "More beautiful HTML reports for llvm-cov/cargo-llvm-cov"