Files
sashimono/src/version.hpp
2022-02-22 15:24:10 +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.5.0";
// 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