Skip to content

Commit 0d27538

Browse files
committed
Merge branch 'release-v0.2'
* Bump version to v0.2. * Fix diff screenshot in the README being blurry.
2 parents e6dd27b + 7a21d56 commit 0d27538

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,23 +128,23 @@ docs/uncov.1: force
128128
pandoc -V title=uncov \
129129
-V section=1 \
130130
-V app=uncov \
131-
-V footer="uncov v0.1" \
131+
-V footer="uncov v0.2" \
132132
-V date="$$(date +'%B %d, %Y')" \
133133
-V author='xaizek <xaizek@posteo.net>' \
134134
-s -o $@ $(sort $(wildcard docs/uncov/*.md))
135135
docs/uncov-gcov.1: force
136136
pandoc -V title=uncov-gcov \
137137
-V section=1 \
138138
-V app=uncov-gcov \
139-
-V footer="uncov v0.1" \
139+
-V footer="uncov v0.2" \
140140
-V date="$$(date +'%B %d, %Y')" \
141141
-V author='xaizek <xaizek@posteo.net>' \
142142
-s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
143143
docs/uncov-web.1: force
144144
pandoc -V title=uncov-web \
145145
-V section=1 \
146146
-V app=uncov-web \
147-
-V footer="uncov v0.1" \
147+
-V footer="uncov v0.2" \
148148
-V date="$$(date +'%B %d, %Y')" \
149149
-V author='xaizek <xaizek@posteo.net>' \
150150
-s -o $@ $(sort $(wildcard docs/uncov-web/*.md))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
**uncov**, _v0.1_, _2016 – 2017_
1+
**uncov**, _v0.2_, _2016 – 2017_
22

3-
_This file last updated on 16 September, 2017_
3+
_This file last updated on 23 September, 2017_
44

55
1. [Description](#description)
66
2. [Supported Environment](#supported-environment)

data/screenshots/diff.png

-42.3 KB
Loading

docs/uncov-gcov.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 1.17.0.3
22
.\"
3-
.TH "uncov-gcov" "1" "September 18, 2017" "uncov v0.1" ""
3+
.TH "uncov-gcov" "1" "September 23, 2017" "uncov v0.2" ""
44
.hy
55
.SH NAME
66
.PP

docs/uncov-web.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 1.17.0.3
22
.\"
3-
.TH "uncov-web" "1" "September 18, 2017" "uncov v0.1" ""
3+
.TH "uncov-web" "1" "September 23, 2017" "uncov v0.2" ""
44
.hy
55
.SH NAME
66
.PP

docs/uncov.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 1.17.0.3
22
.\"
3-
.TH "uncov" "1" "September 18, 2017" "uncov v0.1" ""
3+
.TH "uncov" "1" "September 23, 2017" "uncov v0.2" ""
44
.hy
55
.SH NAME
66
.PP

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ main(int argc, char *argv[])
6262
}
6363

6464
if (invocation.shouldPrintVersion()) {
65-
std::cout << "uncov v0.1\n";
65+
std::cout << "uncov v0.2\n";
6666
return EXIT_SUCCESS;
6767
}
6868

uncov-gcov

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def run():
512512
args = create_args(sys.argv[1:])
513513

514514
if args.version:
515-
print('uncov-gcov v0.1')
515+
print('uncov-gcov v0.2')
516516
exit(0)
517517

518518
if args.verbose:

web/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ main(int argc, char *argv[]) try
7575
}
7676

7777
if (varMap.count("version")) {
78-
std::cout << "uncov-web v0.1\n";
78+
std::cout << "uncov-web v0.2\n";
7979
return EXIT_SUCCESS;
8080
}
8181

0 commit comments

Comments
 (0)