17 lines
424 B
C
17 lines
424 B
C
/*
|
|
* caching_relay - main header
|
|
*
|
|
* Version information is auto-updated by increment_and_push.sh.
|
|
* Git tags are the source of truth for versioning.
|
|
*/
|
|
#ifndef CACHING_RELAY_MAIN_H
|
|
#define CACHING_RELAY_MAIN_H
|
|
|
|
// Version information (auto-updated by increment_and_push.sh)
|
|
#define CR_VERSION_MAJOR 0
|
|
#define CR_VERSION_MINOR 0
|
|
#define CR_VERSION_PATCH 2
|
|
#define CR_VERSION "v0.0.2"
|
|
|
|
#endif /* CACHING_RELAY_MAIN_H */
|