Skip to content

Commit cf06513

Browse files
committed
chore: release 0.26.0
1 parent 7d54b86 commit cf06513

4 files changed

Lines changed: 32 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [COMMITS.md](COMMITS.md) for commit guidelines.
44

5+
## [0.26.0](https://github.com/mzdun/cov/compare/v0.25.0...v0.26.0) (2024-06-03)
6+
7+
### New Features
8+
9+
- print c++filt replacement files ([d6f81f0](https://github.com/mzdun/cov/commit/d6f81f014286fbee5da6718713d970d32795a919))
10+
- add copy buttons to lines of code ([ba47a18](https://github.com/mzdun/cov/commit/ba47a1821fbafaced3eb4d4c9c8e5a90e61b165a))
11+
- add clipboard button to filenames ([bfa2c8f](https://github.com/mzdun/cov/commit/bfa2c8f4c3e91888f57229ec624f469e0db045bf))
12+
- create context for builds and files ([abaa86f](https://github.com/mzdun/cov/commit/abaa86fa7c2fd07c4bbc3aa0c274d5173cff515a))
13+
- use c++filt in `cov show` ([2a622bd](https://github.com/mzdun/cov/commit/2a622bdd0d155726fdb7995b2eefc39bc0e1acc1))
14+
- use new table in `cov show` ([79eb5e5](https://github.com/mzdun/cov/commit/79eb5e516d03173eb83606e987638575fe9089ee))
15+
- rename cxx-filt to c++filt ([3229853](https://github.com/mzdun/cov/commit/32298530b08e27f2a356269d5c904d0754f939cb))
16+
- show both sub-modules and directories ([fc580b3](https://github.com/mzdun/cov/commit/fc580b3efa61f59867b8b36408a00a8595460d99))
17+
- add "relevant" columns to branches and functions ([a815c84](https://github.com/mzdun/cov/commit/a815c84c0ce63dedeae25b3e9a826efe68310f21))
18+
- shorten the function names if appropriate ([41f33dd](https://github.com/mzdun/cov/commit/41f33dd88e56a968d5dc184600b37fb95fc62c6a))
19+
- report start of the ref range ([ccd8339](https://github.com/mzdun/cov/commit/ccd8339f4ec7ca16d8b79ff6309b71cb98d0a903))
20+
- add `cov export` tool ([5c77a14](https://github.com/mzdun/cov/commit/5c77a14f9b811050539230caf8fbbafd721ec0d6))
21+
- add web library ([1cd37dc](https://github.com/mzdun/cov/commit/1cd37dc0ca2408940034dc2e48228093673f1490))
22+
23+
### Bug Fixes
24+
25+
- stabilize order of c++filt JSON files ([d159604](https://github.com/mzdun/cov/commit/d159604e73554492eef87043a9f49290b3fec3cf))
26+
- unify output between *nixen and windows ([6e3a4c7](https://github.com/mzdun/cov/commit/6e3a4c7c5254805c30dfe2b22689e4f68654bda7))
27+
- clean Mustache glue code ([fdea7b2](https://github.com/mzdun/cov/commit/fdea7b28cea33518600d5a512394b668d0812c8a))
28+
- untangle cov module and libs directory ([4337a6f](https://github.com/mzdun/cov/commit/4337a6f57b9239e6f03c5361229055d638b777d4))
29+
- allow more, than 9 parents at a time ([1e4d82f](https://github.com/mzdun/cov/commit/1e4d82faf1012aee698c7de95f1fb395b5735166))
30+
- strip excluded functions ([91f8f84](https://github.com/mzdun/cov/commit/91f8f84a1209241c50f1df40489beb3db0b1d140))
31+
- allow using open_here in all extras ([47591d8](https://github.com/mzdun/cov/commit/47591d81be3a5fbb25893093b5c360238fcb87be))
32+
- **win32**: find proper projection for path filters with slashes ([ffade8d](https://github.com/mzdun/cov/commit/ffade8d6699362ce717ce412fe937b0e8cbda72e))
33+
534
## [0.25.0](https://github.com/mzdun/cov/compare/v0.24.1...v0.25.0) (2024-06-03)
635

736
### New Features

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required (VERSION 3.25)
22
project (cov
33
DESCRIPTION "Code coverage presented locally"
4-
VERSION 0.25.0
4+
VERSION 0.26.0
55
LANGUAGES CXX
66
)
77

docs/roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
- [x] `$COV_FILTER_PATH` (_0.21.1_, mzdun/cov#47)
7171
- [ ] `cov export` from report, build and files (mzdun/cov#58)
7272
- [ ] `--json`
73-
- [ ] `--html`
73+
- [x] `--html` (_0.26.0_)
7474
- [ ] `cov report` (mzdun/cov#59)
7575
- [ ] build set manipulation (adding, removing from HEAD)
7676
- [ ] `cov show` changes: take a list of properties to select only some builds

external/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ set(BUILD_TZ_LIB ON CACHE BOOL "build/install of TZ library")
22
set(JSON_TESTING OFF CACHE BOOL "Compile and/or run self-tests")
33
set(JSON_INSTALL OFF CACHE BOOL "Install the library")
44
set(ENABLE_DATE_INSTALL OFF CACHE BOOL "Enable unit tests")
5+
set(WITH_INSTALLER OFF CACHE BOOL "enable installer")
56

67
add_library(arch::deps INTERFACE IMPORTED)
78
target_link_libraries(arch::deps INTERFACE

0 commit comments

Comments
 (0)