ruby/prism/version.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 строки
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.
*/
2024-08-28 22:43:32 +03:00
#define PRISM_VERSION_MAJOR 1
/**
* The minor version of the Prism library as an int.
*/
2024-08-28 22:43:32 +03:00
#define PRISM_VERSION_MINOR 0
/**
* 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.
*/
2024-08-28 22:43:32 +03:00
#define PRISM_VERSION "1.0.0"
#endif