Skip to content

Commit 8e6c87a

Browse files
committed
Bump version to v0.4
1 parent 2f38f8d commit 8e6c87a

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,23 +130,23 @@ docs/uncov.1: force
130130
pandoc -V title=uncov \
131131
-V section=1 \
132132
-V app=uncov \
133-
-V footer="uncov v0.3" \
133+
-V footer="uncov v0.4" \
134134
-V date="$$(date +'%B %d, %Y')" \
135135
-V author='xaizek <xaizek@posteo.net>' \
136136
-s -o $@ $(sort $(wildcard docs/uncov/*.md))
137137
docs/uncov-gcov.1: force
138138
pandoc -V title=uncov-gcov \
139139
-V section=1 \
140140
-V app=uncov-gcov \
141-
-V footer="uncov v0.3" \
141+
-V footer="uncov v0.4" \
142142
-V date="$$(date +'%B %d, %Y')" \
143143
-V author='xaizek <xaizek@posteo.net>' \
144144
-s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
145145
docs/uncov-web.1: force
146146
pandoc -V title=uncov-web \
147147
-V section=1 \
148148
-V app=uncov-web \
149-
-V footer="uncov v0.3" \
149+
-V footer="uncov v0.4" \
150150
-V date="$$(date +'%B %d, %Y')" \
151151
-V author='xaizek <xaizek@posteo.net>' \
152152
-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.3_, _2016 – 2021_
1+
**uncov**, _v0.4_, _2016 – 2021_
22

3-
_This file last updated on 6 June, 2021_
3+
_This file last updated on 8 June, 2021_
44

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

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" "June 06, 2021" "uncov v0.3" ""
3+
.TH "uncov-gcov" "1" "June 08, 2021" "uncov v0.4" ""
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" "May 26, 2021" "uncov v0.3" ""
3+
.TH "uncov-web" "1" "June 08, 2021" "uncov v0.4" ""
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" "June 05, 2021" "uncov v0.3" ""
3+
.TH "uncov" "1" "June 08, 2021" "uncov v0.4" ""
44
.hy
55
.SH NAME
66
.PP

src/Uncov.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Uncov::run(Settings &settings)
6060
}
6161

6262
if (invocation.shouldPrintVersion()) {
63-
std::cout << "uncov v0.3\n";
63+
std::cout << "uncov v0.4\n";
6464
return EXIT_SUCCESS;
6565
}
6666

uncov-gcov

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

539539
if args.version:
540-
print('uncov-gcov v0.3')
540+
print('uncov-gcov v0.4')
541541
exit(0)
542542

543543
# flatten lists

web/main.cpp

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

7878
if (varMap.count("version")) {
79-
std::cout << "uncov-web v0.3\n";
79+
std::cout << "uncov-web v0.4\n";
8080
return EXIT_SUCCESS;
8181
}
8282

0 commit comments

Comments
 (0)