Skip to content

Commit c613ee9

Browse files
committed
Bump version to v0.3
1 parent 048ad9c commit c613ee9

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
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.2" \
131+
-V footer="uncov v0.3" \
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.2" \
139+
-V footer="uncov v0.3" \
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.2" \
147+
-V footer="uncov v0.3" \
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.2_, _2016 – 2018_
1+
**uncov**, _v0.3_, _2016 – 2019_
22

3-
_This file last updated on 11 November, 2018_
3+
_This file last updated on 25 March, 2019_
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" "November 11, 2018" "uncov v0.2" ""
3+
.TH "uncov-gcov" "1" "March 25, 2019" "uncov v0.3" ""
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" "November 11, 2018" "uncov v0.2" ""
3+
.TH "uncov-web" "1" "March 25, 2019" "uncov v0.3" ""
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" "November 30, 2018" "uncov v0.2" ""
3+
.TH "uncov" "1" "March 25, 2019" "uncov v0.3" ""
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.2\n";
65+
std::cout << "uncov v0.3\n";
6666
return EXIT_SUCCESS;
6767
}
6868

uncov-gcov

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

520520
if args.version:
521-
print('uncov-gcov v0.2')
521+
print('uncov-gcov v0.3')
522522
exit(0)
523523

524524
if args.verbose:

0 commit comments

Comments
 (0)