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.
|
|
|
|
*/
|
2023-09-27 19:24:48 +03:00
|
|
|
#define PRISM_VERSION_MAJOR 0
|
2023-10-31 18:38:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The minor version of the Prism library as an int.
|
|
|
|
*/
|
2023-11-03 18:00:14 +03:00
|
|
|
#define PRISM_VERSION_MINOR 17
|
2023-10-31 18:38:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The patch version of the Prism library as an int.
|
|
|
|
*/
|
2023-11-03 20:59:07 +03:00
|
|
|
#define PRISM_VERSION_PATCH 1
|
2023-10-31 18:38:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The version of the Prism library as a constant string.
|
|
|
|
*/
|
2023-11-03 20:59:07 +03:00
|
|
|
#define PRISM_VERSION "0.17.1"
|
2023-10-31 20:26:31 +03:00
|
|
|
|
|
|
|
#endif
|