Skip to content

Commit

Permalink
Bump version to v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xaizek committed Nov 18, 2022
1 parent cdb2db3 commit 50c0d85
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,23 +135,23 @@ docs/uncov.1: force
pandoc -V title=uncov \
-V section=1 \
-V app=uncov \
-V footer="uncov v0.4" \
-V footer="uncov v0.5" \
-V date="$$(date +'%B %d, %Y')" \
-V author='xaizek <[email protected]>' \
-s -o $@ $(sort $(wildcard docs/uncov/*.md))
docs/uncov-gcov.1: force
pandoc -V title=uncov-gcov \
-V section=1 \
-V app=uncov-gcov \
-V footer="uncov v0.4" \
-V footer="uncov v0.5" \
-V date="$$(date +'%B %d, %Y')" \
-V author='xaizek <[email protected]>' \
-s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
docs/uncov-web.1: force
pandoc -V title=uncov-web \
-V section=1 \
-V app=uncov-web \
-V footer="uncov v0.4" \
-V footer="uncov v0.5" \
-V date="$$(date +'%B %d, %Y')" \
-V author='xaizek <[email protected]>' \
-s -o $@ $(sort $(wildcard docs/uncov-web/*.md))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**uncov**, _v0.4_, _2016 – 2022_
**uncov**, _v0.5_, _2016 – 2022_

_This file last updated on 8 June, 2021_
_This file last updated on 18 November, 2022_

1. [Description](#description)
2. [Supported Environment](#supported-environment)
Expand Down
2 changes: 1 addition & 1 deletion docs/uncov-gcov.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "uncov-gcov" "1" "November 18, 2022" "uncov v0.4" ""
.TH "uncov-gcov" "1" "November 18, 2022" "uncov v0.5" ""
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion docs/uncov-web.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "uncov-web" "1" "November 18, 2022" "uncov v0.4" ""
.TH "uncov-web" "1" "November 18, 2022" "uncov v0.5" ""
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion docs/uncov.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "uncov" "1" "November 18, 2022" "uncov v0.4" ""
.TH "uncov" "1" "November 18, 2022" "uncov v0.5" ""
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static const std::string databaseFileName = "uncov.sqlite";

std::string getAppVersion()
{
return "v0.4";
return "v0.5";
}

std::string getConfigFile()
Expand Down
2 changes: 1 addition & 1 deletion uncov-gcov
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def run():
args = create_args(sys.argv[1:])

if args.version:
print('uncov-gcov v0.4')
print('uncov-gcov v0.5')
exit(0)

# flatten lists
Expand Down

0 comments on commit 50c0d85

Please sign in to comment.