Skip to content

Commit 50c0d85

Browse files
committed
Bump version to v0.5
1 parent cdb2db3 commit 50c0d85

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
@@ -135,23 +135,23 @@ docs/uncov.1: force
135135
pandoc -V title=uncov \
136136
-V section=1 \
137137
-V app=uncov \
138-
-V footer="uncov v0.4" \
138+
-V footer="uncov v0.5" \
139139
-V date="$$(date +'%B %d, %Y')" \
140140
-V author='xaizek <xaizek@posteo.net>' \
141141
-s -o $@ $(sort $(wildcard docs/uncov/*.md))
142142
docs/uncov-gcov.1: force
143143
pandoc -V title=uncov-gcov \
144144
-V section=1 \
145145
-V app=uncov-gcov \
146-
-V footer="uncov v0.4" \
146+
-V footer="uncov v0.5" \
147147
-V date="$$(date +'%B %d, %Y')" \
148148
-V author='xaizek <xaizek@posteo.net>' \
149149
-s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
150150
docs/uncov-web.1: force
151151
pandoc -V title=uncov-web \
152152
-V section=1 \
153153
-V app=uncov-web \
154-
-V footer="uncov v0.4" \
154+
-V footer="uncov v0.5" \
155155
-V date="$$(date +'%B %d, %Y')" \
156156
-V author='xaizek <xaizek@posteo.net>' \
157157
-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.4_, _2016 – 2022_
1+
**uncov**, _v0.5_, _2016 – 2022_
22

3-
_This file last updated on 8 June, 2021_
3+
_This file last updated on 18 November, 2022_
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
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "uncov-gcov" "1" "November 18, 2022" "uncov v0.4" ""
17+
.TH "uncov-gcov" "1" "November 18, 2022" "uncov v0.5" ""
1818
.hy
1919
.SH NAME
2020
.PP

docs/uncov-web.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "uncov-web" "1" "November 18, 2022" "uncov v0.4" ""
17+
.TH "uncov-web" "1" "November 18, 2022" "uncov v0.5" ""
1818
.hy
1919
.SH NAME
2020
.PP

docs/uncov.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "uncov" "1" "November 18, 2022" "uncov v0.4" ""
17+
.TH "uncov" "1" "November 18, 2022" "uncov v0.5" ""
1818
.hy
1919
.SH NAME
2020
.PP

src/app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ static const std::string databaseFileName = "uncov.sqlite";
3030

3131
std::string getAppVersion()
3232
{
33-
return "v0.4";
33+
return "v0.5";
3434
}
3535

3636
std::string getConfigFile()

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.4')
540+
print('uncov-gcov v0.5')
541541
exit(0)
542542

543543
# flatten lists

0 commit comments

Comments
 (0)