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

Bump version to v0.2
Author: xaizek
Author date (UTC): 2017-09-23 18:41
Committer name: xaizek
Committer date (UTC): 2017-09-23 18:41
Parent(s): fd67ae5131b632962c7f0108d3621c7e94d0a638
Signing key: 99DC5E4DB05F6BE2
Tree: 6e64229fd44c77984aa88f443149eb6eccd9f8d5
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
web/main.cpp 1 1
File Makefile changed (mode: 100644) (index 5a7f959..1beb9f8)
... ... 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.1" \
131 -V footer="uncov v0.2" \
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.1" \
139 -V footer="uncov v0.2" \
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.1" \
147 -V footer="uncov v0.2" \
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 d242a4a..d230bb3)
1 **uncov**, _v0.1_, _2016 – 2017_
1 **uncov**, _v0.2_, _2016 – 2017_
2 2
3 _This file last updated on 16 September, 2017_
3 _This file last updated on 23 September, 2017_
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 d185449..af863a7)
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" "September 18, 2017" "uncov v0.1" ""
3 .TH "uncov-gcov" "1" "September 23, 2017" "uncov v0.2" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File docs/uncov-web.1 changed (mode: 100644) (index cc60688..03bc9b7)
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" "September 18, 2017" "uncov v0.1" ""
3 .TH "uncov-web" "1" "September 23, 2017" "uncov v0.2" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File docs/uncov.1 changed (mode: 100644) (index 69d8a24..b743ffc)
1 1 .\" Automatically generated by Pandoc 1.17.0.3 .\" Automatically generated by Pandoc 1.17.0.3
2 2 .\" .\"
3 .TH "uncov" "1" "September 18, 2017" "uncov v0.1" ""
3 .TH "uncov" "1" "September 23, 2017" "uncov v0.2" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File src/main.cpp changed (mode: 100644) (index 599d626..2374adf)
... ... main(int argc, char *argv[])
62 62 } }
63 63
64 64 if (invocation.shouldPrintVersion()) { if (invocation.shouldPrintVersion()) {
65 std::cout << "uncov v0.1\n";
65 std::cout << "uncov v0.2\n";
66 66 return EXIT_SUCCESS; return EXIT_SUCCESS;
67 67 } }
68 68
File uncov-gcov changed (mode: 100755) (index f17223c..aa0d512)
... ... def run():
512 512 args = create_args(sys.argv[1:]) args = create_args(sys.argv[1:])
513 513
514 514 if args.version: if args.version:
515 print('uncov-gcov v0.1')
515 print('uncov-gcov v0.2')
516 516 exit(0) exit(0)
517 517
518 518 if args.verbose: if args.verbose:
File web/main.cpp changed (mode: 100644) (index 13c39bb..5bcf034)
... ... main(int argc, char *argv[]) try
75 75 } }
76 76
77 77 if (varMap.count("version")) { if (varMap.count("version")) {
78 std::cout << "uncov-web v0.1\n";
78 std::cout << "uncov-web v0.2\n";
79 79 return EXIT_SUCCESS; return EXIT_SUCCESS;
80 80 } }
81 81
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