Skip to content

Commit

Permalink
Bump version to v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xaizek committed Jun 8, 2021
1 parent 2f38f8d commit 8e6c87a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,23 +130,23 @@ docs/uncov.1: force
pandoc -V title=uncov \
-V section=1 \
-V app=uncov \
-V footer="uncov v0.3" \
-V footer="uncov v0.4" \
-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.3" \
-V footer="uncov v0.4" \
-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.3" \
-V footer="uncov v0.4" \
-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.3_, _2016 – 2021_
**uncov**, _v0.4_, _2016 – 2021_

_This file last updated on 6 June, 2021_
_This file last updated on 8 June, 2021_

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
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 1.17.0.3
.\"
.TH "uncov-gcov" "1" "June 06, 2021" "uncov v0.3" ""
.TH "uncov-gcov" "1" "June 08, 2021" "uncov v0.4" ""
.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
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 1.17.0.3
.\"
.TH "uncov-web" "1" "May 26, 2021" "uncov v0.3" ""
.TH "uncov-web" "1" "June 08, 2021" "uncov v0.4" ""
.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
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 1.17.0.3
.\"
.TH "uncov" "1" "June 05, 2021" "uncov v0.3" ""
.TH "uncov" "1" "June 08, 2021" "uncov v0.4" ""
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion src/Uncov.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Uncov::run(Settings &settings)
}

if (invocation.shouldPrintVersion()) {
std::cout << "uncov v0.3\n";
std::cout << "uncov v0.4\n";
return EXIT_SUCCESS;
}

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.3')
print('uncov-gcov v0.4')
exit(0)

# flatten lists
Expand Down
2 changes: 1 addition & 1 deletion web/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ main(int argc, char *argv[]) try
}

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

Expand Down

0 comments on commit 8e6c87a

Please sign in to comment.