xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 8e6c87acc9b0b1c097a9d50b76e404cfc68b715d

Bump version to v0.4
Author: xaizek
Author date (UTC): 2021-06-08 12:04
Committer name: xaizek
Committer date (UTC): 2021-06-08 12:04
Parent(s): 2f38f8d590879d62ecdaea1d3a21de28410c5716
Signing key: 99DC5E4DB05F6BE2
Tree: f760c449264af13f5c5d2938f64b9a9f6c57365f
File Lines added Lines deleted
Makefile 3 3
README.md 2 2
docs/uncov-gcov.1 1 1
docs/uncov-web.1 1 1
docs/uncov.1 1 1
src/Uncov.cpp 1 1
uncov-gcov 1 1
web/main.cpp 1 1
File Makefile changed (mode: 100644) (index c6f47bc..b70b867)
... ... docs/uncov.1: force
130 130 pandoc -V title=uncov \ pandoc -V title=uncov \
131 131 -V section=1 \ -V section=1 \
132 132 -V app=uncov \ -V app=uncov \
133 -V footer="uncov v0.3" \
133 -V footer="uncov v0.4" \
134 134 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
135 135 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
136 136 -s -o $@ $(sort $(wildcard docs/uncov/*.md)) -s -o $@ $(sort $(wildcard docs/uncov/*.md))
 
... ... docs/uncov-gcov.1: force
138 138 pandoc -V title=uncov-gcov \ pandoc -V title=uncov-gcov \
139 139 -V section=1 \ -V section=1 \
140 140 -V app=uncov-gcov \ -V app=uncov-gcov \
141 -V footer="uncov v0.3" \
141 -V footer="uncov v0.4" \
142 142 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
143 143 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
144 144 -s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md)) -s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
 
... ... docs/uncov-web.1: force
146 146 pandoc -V title=uncov-web \ pandoc -V title=uncov-web \
147 147 -V section=1 \ -V section=1 \
148 148 -V app=uncov-web \ -V app=uncov-web \
149 -V footer="uncov v0.3" \
149 -V footer="uncov v0.4" \
150 150 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
151 151 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
152 152 -s -o $@ $(sort $(wildcard docs/uncov-web/*.md)) -s -o $@ $(sort $(wildcard docs/uncov-web/*.md))
File README.md changed (mode: 100644) (index a663d1a..bd1078a)
1 **uncov**, _v0.3_, _2016 – 2021_
1 **uncov**, _v0.4_, _2016 – 2021_
2 2
3 _This file last updated on 6 June, 2021_
3 _This file last updated on 8 June, 2021_
4 4
5 5 1. [Description](#description) 1. [Description](#description)
6 6 2. [Supported Environment](#supported-environment) 2. [Supported Environment](#supported-environment)
File docs/uncov-gcov.1 changed (mode: 100644) (index e01eeb2..f85be9b)
1 1 .\" Automatically generated by Pandoc 1.17.0.3 .\" Automatically generated by Pandoc 1.17.0.3
2 2 .\" .\"
3 .TH "uncov-gcov" "1" "June 06, 2021" "uncov v0.3" ""
3 .TH "uncov-gcov" "1" "June 08, 2021" "uncov v0.4" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File docs/uncov-web.1 changed (mode: 100644) (index 36735b9..ac7bceb)
1 1 .\" Automatically generated by Pandoc 1.17.0.3 .\" Automatically generated by Pandoc 1.17.0.3
2 2 .\" .\"
3 .TH "uncov-web" "1" "May 26, 2021" "uncov v0.3" ""
3 .TH "uncov-web" "1" "June 08, 2021" "uncov v0.4" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File docs/uncov.1 changed (mode: 100644) (index ab23ebe..f1afa2d)
1 1 .\" Automatically generated by Pandoc 1.17.0.3 .\" Automatically generated by Pandoc 1.17.0.3
2 2 .\" .\"
3 .TH "uncov" "1" "June 05, 2021" "uncov v0.3" ""
3 .TH "uncov" "1" "June 08, 2021" "uncov v0.4" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File src/Uncov.cpp changed (mode: 100644) (index 51c3b33..281b49f)
... ... Uncov::run(Settings &settings)
60 60 } }
61 61
62 62 if (invocation.shouldPrintVersion()) { if (invocation.shouldPrintVersion()) {
63 std::cout << "uncov v0.3\n";
63 std::cout << "uncov v0.4\n";
64 64 return EXIT_SUCCESS; return EXIT_SUCCESS;
65 65 } }
66 66
File uncov-gcov changed (mode: 100755) (index 8817b4a..014e48d)
... ... def run():
537 537 args = create_args(sys.argv[1:]) args = create_args(sys.argv[1:])
538 538
539 539 if args.version: if args.version:
540 print('uncov-gcov v0.3')
540 print('uncov-gcov v0.4')
541 541 exit(0) exit(0)
542 542
543 543 # flatten lists # flatten lists
File web/main.cpp changed (mode: 100644) (index 8c6e750..16f84bb)
... ... main(int argc, char *argv[]) try
76 76 } }
77 77
78 78 if (varMap.count("version")) { if (varMap.count("version")) {
79 std::cout << "uncov-web v0.3\n";
79 std::cout << "uncov-web v0.4\n";
80 80 return EXIT_SUCCESS; return EXIT_SUCCESS;
81 81 } }
82 82
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master