Files
ruby-comp/vendor/mruby-compiler2/lib/prism/include/prism/version.h
Intege-rs eb5172548a fix msvc
2026-08-15 08:44:02 -04:00

30 lines
496 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 1
/**
* The minor version of the Prism library as an int.
*/
#define PRISM_VERSION_MINOR 4
/**
* 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 "1.4.0"
#endif