Files
sashimono/src/version.hpp
2024-04-30 08:50:46 +05:30

17 lines
414 B
C++

#ifndef _SA_VERSION_
#define _SA_VERSION_
#include "pchheader.hpp"
namespace version
{
// Sashimono agent version. Written to new configs.
constexpr const char *AGENT_VERSION = "0.8.3";
// Minimum compatible config version (this will be used to validate configs).
constexpr const char *MIN_CONFIG_VERSION = "0.5.0";
int version_compare(const std::string &x, const std::string &y);
}
#endif