Sha256: a600299dcb13967a1dc07c5090ade10573748e49f896c23b979db4a3c2482663

Contents?: true

Size: 496 Bytes

Versions: 2

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 2

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

#endif

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
debase-ruby_core_source-3.4.0 lib/debase/ruby_core_source/ruby-3.4.0/prism/version.h
prism-1.2.0 include/prism/version.h