17 lines
388 B
C
17 lines
388 B
C
/*
|
|
* nsigner main header - version information
|
|
*
|
|
* Version macros are auto-updated by increment_and_push.sh.
|
|
*/
|
|
|
|
#ifndef NSIGNER_MAIN_H
|
|
#define NSIGNER_MAIN_H
|
|
|
|
/* Version information (auto-updated by build/version tooling) */
|
|
#define NSIGNER_VERSION_MAJOR 0
|
|
#define NSIGNER_VERSION_MINOR 0
|
|
#define NSIGNER_VERSION_PATCH 2
|
|
#define NSIGNER_VERSION "v0.0.2"
|
|
|
|
#endif /* NSIGNER_MAIN_H */
|