This repository has been archived on 2025-03-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mqttd/src/version.hpp
2024-09-02 10:34:25 -03:00

11 lines
373 B
C++

#define MQTTD_VERSION_MAJOR 0
#define MQTTD_VERSION_MINOR 0
#define MQTTD_VERSION_PATCH 1
#define MQTTD_COMMIT_HASH "f8b32e6edc0e7458239a7d103566683c92b76541"
#define MQTTD_BUILD_TIMESTAMP 1725283801
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
#define VERSION TOSTRING(MQTTD_VERSION_MAJOR) "." TOSTRING(MQTTD_VERSION_MINOR) "." TOSTRING(MQTTD_VERSION_PATCH)