diff --git a/src/tracy.cpp b/src/tracy.cpp index 0d549d6..7fb8716 100644 --- a/src/tracy.cpp +++ b/src/tracy.cpp @@ -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]) == "-?")) { diff --git a/src/version.h b/src/version.h index a84233f..f7f6906 100644 --- a/src/version.h +++ b/src/version.h @@ -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)