Redo versioning with neargye-semver

This commit is contained in:
James P. Howard, II
2022-06-17 21:13:05 -04:00
parent 9859000182
commit 52191803ef
6 changed files with 15 additions and 15 deletions

View File

@@ -52,7 +52,7 @@ int main(int argc, char **argv) {
CLI11_PARSE(app, argc, argv);
console->set_level(spdlog::level::from_str(logLevelOption));
console->info("Compiled with Kami/{}, log level {}", KAMI_VERSION_STRING, logLevelOption);
console->info("Compiled with Kami/{}, log level {}", kami::version.to_string(), logLevelOption);
TestAgent test_agent;
console->debug("Successfully created Agent with ID {}", test_agent.get_agent_id().to_string());

View File

@@ -48,7 +48,7 @@ int main(int argc, char **argv) {
CLI11_PARSE(app, argc, argv);
console->set_level(spdlog::level::from_str(logLevelOption));
console->info("Compiled with Kami/{}, log level {}", KAMI_VERSION_STRING, logLevelOption);
console->info("Compiled with Kami/{}, log level {}", kami::version.to_string(), logLevelOption);
AgentID testAgentID;
console->debug("Successfully created AgentID with ID {}", testAgentID.to_string());