Sha256: f1cee022346ebe2cb07828d4ecb070a2c7a197d358b8fcd276a5dc2ac6b7a219

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

/**
 * @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 3

/**
 * 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.3.0"

#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prism-1.3.0 include/prism/version.h