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

Bump version to v0.3
Author: xaizek
Author date (UTC): 2019-03-25 16:04
Committer name: xaizek
Committer date (UTC): 2019-03-25 16:04
Parent(s): 048ad9c82397fd483985b0da683f60ab2b8c9f8f
Signing key: 99DC5E4DB05F6BE2
Tree: 563e4883821d4e02e44d81cf733d315a8064ddb7
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/main.cpp 1 1
uncov-gcov 1 1
File Makefile changed (mode: 100644) (index 8de8e97..8e38111)
... ... docs/uncov.1: force
128 128 pandoc -V title=uncov \ pandoc -V title=uncov \
129 129 -V section=1 \ -V section=1 \
130 130 -V app=uncov \ -V app=uncov \
131 -V footer="uncov v0.2" \
131 -V footer="uncov v0.3" \
132 132 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
133 133 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
134 134 -s -o $@ $(sort $(wildcard docs/uncov/*.md)) -s -o $@ $(sort $(wildcard docs/uncov/*.md))
 
... ... docs/uncov-gcov.1: force
136 136 pandoc -V title=uncov-gcov \ pandoc -V title=uncov-gcov \
137 137 -V section=1 \ -V section=1 \
138 138 -V app=uncov-gcov \ -V app=uncov-gcov \
139 -V footer="uncov v0.2" \
139 -V footer="uncov v0.3" \
140 140 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
141 141 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
142 142 -s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md)) -s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
 
... ... docs/uncov-web.1: force
144 144 pandoc -V title=uncov-web \ pandoc -V title=uncov-web \
145 145 -V section=1 \ -V section=1 \
146 146 -V app=uncov-web \ -V app=uncov-web \
147 -V footer="uncov v0.2" \
147 -V footer="uncov v0.3" \
148 148 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
149 149 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
150 150 -s -o $@ $(sort $(wildcard docs/uncov-web/*.md)) -s -o $@ $(sort $(wildcard docs/uncov-web/*.md))
File README.md changed (mode: 100644) (index c921dca..dd2db22)
1 **uncov**, _v0.2_, _2016 – 2018_
1 **uncov**, _v0.3_, _2016 – 2019_
2 2
3 _This file last updated on 11 November, 2018_
3 _This file last updated on 25 March, 2019_
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 cf852a9..bc7d35f)
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" "November 11, 2018" "uncov v0.2" ""
3 .TH "uncov-gcov" "1" "March 25, 2019" "uncov v0.3" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File docs/uncov-web.1 changed (mode: 100644) (index 9e0b1c5..f296084)
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" "November 11, 2018" "uncov v0.2" ""
3 .TH "uncov-web" "1" "March 25, 2019" "uncov v0.3" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File docs/uncov.1 changed (mode: 100644) (index 8b7000b..a890516)
1 1 .\" Automatically generated by Pandoc 1.17.0.3 .\" Automatically generated by Pandoc 1.17.0.3
2 2 .\" .\"
3 .TH "uncov" "1" "November 30, 2018" "uncov v0.2" ""
3 .TH "uncov" "1" "March 25, 2019" "uncov v0.3" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File src/main.cpp changed (mode: 100644) (index 2374adf..c2e5ac0)
... ... main(int argc, char *argv[])
62 62 } }
63 63
64 64 if (invocation.shouldPrintVersion()) { if (invocation.shouldPrintVersion()) {
65 std::cout << "uncov v0.2\n";
65 std::cout << "uncov v0.3\n";
66 66 return EXIT_SUCCESS; return EXIT_SUCCESS;
67 67 } }
68 68
File uncov-gcov changed (mode: 100755) (index db15b56..387dafd)
... ... def run():
518 518 args = create_args(sys.argv[1:]) args = create_args(sys.argv[1:])
519 519
520 520 if args.version: if args.version:
521 print('uncov-gcov v0.2')
521 print('uncov-gcov v0.3')
522 522 exit(0) exit(0)
523 523
524 524 if args.verbose: if args.verbose:
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