Skip to content

Commit

Permalink
v0.5.7:
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Apr 18, 2020
1 parent 8a53de9 commit d586fa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/tracy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ int main(int argc, char **argv) {

if ((std::string(argv[1]) == "version") || (std::string(argv[1]) == "--version") || (std::string(argv[1]) == "--version-only") || (std::string(argv[1]) == "-v")) {
std::cout << "Tracy version: v" << tracyVersionNumber << std::endl;
std::cout << " using Boost: v" << BOOST_VERSION / 100000 << "." << BOOST_VERSION / 100 % 1000 << "." << BOOST_VERSION % 100 << std::endl;
std::cout << " using HTSlib: v" << hts_version() << std::endl;
return 0;
}
else if ((std::string(argv[1]) == "help") || (std::string(argv[1]) == "--help") || (std::string(argv[1]) == "-h") || (std::string(argv[1]) == "-?")) {
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace tracy
{


std::string tracyVersionNumber = "0.5.6";
std::string tracyVersionNumber = "0.5.7";

inline
void printTitle(std::string const& title)
Expand Down

0 comments on commit d586fa8

Please sign in to comment.