mirror of
https://github.com/EvernodeXRPL/sashimono.git
synced 2026-04-29 15:38:00 +00:00
17 lines
414 B
C++
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 |