2
0
mirror of https://github.com/catchorg/Catch2 synced 2026-02-21 03:32:16 +00:00

Update version string to mention Catch2

This commit is contained in:
Martin Hořeňovský
2022-01-27 11:21:43 +01:00
parent 5121660e7f
commit dc86d51af2
4 changed files with 6 additions and 6 deletions

View File

@@ -173,7 +173,7 @@ namespace Catch {
void Session::showHelp() const {
Catch::cout()
<< "\nCatch v" << libraryVersion() << '\n'
<< "\nCatch2 v" << libraryVersion() << '\n'
<< m_cli << '\n'
<< "For more detailed usage please see the project docs\n\n" << std::flush;
}
@@ -181,7 +181,7 @@ namespace Catch {
Catch::cout()
<< std::left << std::setw(16) << "description: " << "A Catch2 test executable\n"
<< std::left << std::setw(16) << "category: " << "testframework\n"
<< std::left << std::setw(16) << "framework: " << "Catch Test\n"
<< std::left << std::setw(16) << "framework: " << "Catch2\n"
<< std::left << std::setw(16) << "version: " << libraryVersion() << '\n' << std::flush;
}