Skip to content

Commit

Permalink
Bump version to v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xaizek committed Mar 25, 2019
1 parent 048ad9c commit c613ee9
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 @@ -128,23 +128,23 @@ docs/uncov.1: force
pandoc -V title=uncov \
-V section=1 \
-V app=uncov \
-V footer="uncov v0.2" \
-V footer="uncov v0.3" \
-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.2" \
-V footer="uncov v0.3" \
-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.2" \
-V footer="uncov v0.3" \
-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.2_, _2016 – 2018_
**uncov**, _v0.3_, _2016 – 2019_

_This file last updated on 11 November, 2018_
_This file last updated on 25 March, 2019_

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" "November 11, 2018" "uncov v0.2" ""
.TH "uncov-gcov" "1" "March 25, 2019" "uncov v0.3" ""
.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" "November 11, 2018" "uncov v0.2" ""
.TH "uncov-web" "1" "March 25, 2019" "uncov v0.3" ""
.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" "November 30, 2018" "uncov v0.2" ""
.TH "uncov" "1" "March 25, 2019" "uncov v0.3" ""
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ main(int argc, char *argv[])
}

if (invocation.shouldPrintVersion()) {
std::cout << "uncov v0.2\n";
std::cout << "uncov v0.3\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 @@ -518,7 +518,7 @@ def run():
args = create_args(sys.argv[1:])

if args.version:
print('uncov-gcov v0.2')
print('uncov-gcov v0.3')
exit(0)

if args.verbose:
Expand Down

0 comments on commit c613ee9

Please sign in to comment.