2023-10-31 20:26:31 +03:00
|
|
|
/**
|
|
|
|
* @file version.h
|
|
|
|
*
|
|
|
|
* The version of the Prism library.
|
|
|
|
*/
|
|
|
|
#ifndef PRISM_VERSION_H
|
|
|
|
#define PRISM_VERSION_H
|
|
|
|
|
2023-10-31 18:38:06 +03:00
|
|
|
/**
|
|
|
|
* The major version of the Prism library as an int.
|
|
|
|
*/
|
2024-08-28 22:43:32 +03:00
|
|
|
#define PRISM_VERSION_MAJOR 1
|
2023-10-31 18:38:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The minor version of the Prism library as an int.
|
|
|
|
*/
|
2024-08-28 22:43:32 +03:00
|
|
|
#define PRISM_VERSION_MINOR 0
|
2023-10-31 18:38:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The patch version of the Prism library as an int.
|
|
|
|
*/
|
2023-11-21 20:48:00 +03:00
|
|
|
#define PRISM_VERSION_PATCH 0
|
2023-10-31 18:38:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The version of the Prism library as a constant string.
|
|
|
|
*/
|
2024-08-28 22:43:32 +03:00
|
|
|
#define PRISM_VERSION "1.0.0"
|
2023-10-31 20:26:31 +03:00
|
|
|
|
|
|
|
#endif
|