Skip to content

Commit

Permalink
chore(release): prepare for v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaka91 committed Jun 22, 2023
1 parent 94ae77a commit 74fee8d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Configure cache
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov (for use in tests)
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov@0.5
- name: Test
run: cargo test
lint:
Expand Down
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@

All notable changes to this project will be documented in this file.

## [unreleased]
## [0.1.1] - 2023-06-22

### Bug Fixes

- Don't show a 0 count if coverage is unknown ([6cd93f8](https://github.com/dnaka91/llvm-cov-pretty/commit/6cd93f8))
- Reduce gaps in colored coverage areas ([1094cfa](https://github.com/dnaka91/llvm-cov-pretty/commit/1094cfa))
- Handle the case where report paths are relative ([94ae77a](https://github.com/dnaka91/llvm-cov-pretty/commit/94ae77a))

### Documentation

- Partially document code parts ([2518ff7](https://github.com/dnaka91/llvm-cov-pretty/commit/2518ff7))
- Include commit hashes in the changelog ([d5befa1](https://github.com/dnaka91/llvm-cov-pretty/commit/d5befa1))

### Features

- Process coverage data and files in parallel ([d253d0f](https://github.com/dnaka91/llvm-cov-pretty/commit/d253d0f))
- Add version check for cargo-llvm-cov ([227fca0](https://github.com/dnaka91/llvm-cov-pretty/commit/227fca0))
- Add version check for cargo-llvm-cov ([624ab1c](https://github.com/dnaka91/llvm-cov-pretty/commit/624ab1c))

### Miscellaneous Tasks

Expand All @@ -27,6 +29,7 @@ All notable changes to this project will be documented in this file.

- Use askama's escape function during highlighting ([e599493](https://github.com/dnaka91/llvm-cov-pretty/commit/e599493))
- Simplify function name demangling ([52ff0ea](https://github.com/dnaka91/llvm-cov-pretty/commit/52ff0ea))
- Improve logic to locate the project root ([593d315](https://github.com/dnaka91/llvm-cov-pretty/commit/593d315))

## [0.1.0] - 2023-06-18

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llvm-cov-pretty"
version = "0.1.0"
version = "0.1.1"
authors = ["Dominik Nakamura <dnaka91@gmail.com>"]
edition = "2021"
description = "More beautiful HTML reports for llvm-cov/cargo-llvm-cov"
Expand Down

0 comments on commit 74fee8d

Please sign in to comment.