ruby/prism/version.h
2024-02-15 15:50:04 -05:00

29 lines
498 B
C

/**
* @file version.h
*
* The version of the Prism library.
*/
#ifndef PRISM_VERSION_H
#define PRISM_VERSION_H
/**
* The major version of the Prism library as an int.
*/
#define PRISM_VERSION_MAJOR 0
/**
* The minor version of the Prism library as an int.
*/
#define PRISM_VERSION_MINOR 24
/**
* The patch version of the Prism library as an int.
*/
#define PRISM_VERSION_PATCH 0
/**
* The version of the Prism library as a constant string.
*/
#define PRISM_VERSION "0.24.0"
#endif