2023-10-31 13:26:31 -04:00
|
|
|
/**
|
|
|
|
* @file version.h
|
|
|
|
*
|
|
|
|
* The version of the Prism library.
|
|
|
|
*/
|
|
|
|
#ifndef PRISM_VERSION_H
|
|
|
|
#define PRISM_VERSION_H
|
|
|
|
|
2023-10-31 11:38:06 -04:00
|
|
|
/**
|
|
|
|
* The major version of the Prism library as an int.
|
|
|
|
*/
|
2024-08-28 15:43:32 -04:00
|
|
|
#define PRISM_VERSION_MAJOR 1
|
2023-10-31 11:38:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The minor version of the Prism library as an int.
|
|
|
|
*/
|
2025-03-18 13:58:52 -04:00
|
|
|
#define PRISM_VERSION_MINOR 4
|
2023-10-31 11:38:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The patch version of the Prism library as an int.
|
|
|
|
*/
|
2023-11-21 12:48:00 -05:00
|
|
|
#define PRISM_VERSION_PATCH 0
|
2023-10-31 11:38:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The version of the Prism library as a constant string.
|
|
|
|
*/
|
2025-03-18 13:58:52 -04:00
|
|
|
#define PRISM_VERSION "1.4.0"
|
2023-10-31 13:26:31 -04:00
|
|
|
|
|
|
|
#endif
|