Skip to content

Commit

Permalink
Merge branch 'release-v0.2'
Browse files Browse the repository at this point in the history
* Bump version to v0.2.
* Fix diff screenshot in the README being blurry.
  • Loading branch information
xaizek committed Sep 23, 2017
2 parents e6dd27b + 7a21d56 commit 0d27538
Show file tree
Hide file tree
Showing 9 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 @@ -128,23 +128,23 @@ docs/uncov.1: force
pandoc -V title=uncov \
-V section=1 \
-V app=uncov \
-V footer="uncov v0.1" \
-V footer="uncov v0.2" \
-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.1" \
-V footer="uncov v0.2" \
-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.1" \
-V footer="uncov v0.2" \
-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.1_, _2016 – 2017_
**uncov**, _v0.2_, _2016 – 2017_

_This file last updated on 16 September, 2017_
_This file last updated on 23 September, 2017_

1. [Description](#description)
2. [Supported Environment](#supported-environment)
Expand Down
Binary file modified data/screenshots/diff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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" "September 18, 2017" "uncov v0.1" ""
.TH "uncov-gcov" "1" "September 23, 2017" "uncov v0.2" ""
.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" "September 18, 2017" "uncov v0.1" ""
.TH "uncov-web" "1" "September 23, 2017" "uncov v0.2" ""
.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" "September 18, 2017" "uncov v0.1" ""
.TH "uncov" "1" "September 23, 2017" "uncov v0.2" ""
.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.1\n";
std::cout << "uncov v0.2\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 @@ -512,7 +512,7 @@ def run():
args = create_args(sys.argv[1:])

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

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

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

Expand Down

0 comments on commit 0d27538

Please sign in to comment.