Sha256: d7b98423167f83bbc12b6dd7ba2a2e6b500a5e9b555860308961656f3512a7ea

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

//
//  version.h
//  snowcrash
//
//  Created by Zdenek Nemec on 4/14/14.
//
//  Attribution Notice:
//  This work might use parts of Node.js `node_version.h`
//  https://github.com/joyent/node
//
//  Copyright (c) 2014 Apiary Inc. All rights reserved.
//

#ifndef SNOWCRASH_VERSION_H
#define SNOWCRASH_VERSION_H

#define SNOWCRASH_MAJOR_VERSION 0
#define SNOWCRASH_MINOR_VERSION 12
#define SNOWCRASH_PATCH_VERSION 1

#define SNOWCRASH_VERSION_IS_RELEASE 1

#ifndef SNOWCRASH_STRINGIFY
#   define SNOWCRASH_STRINGIFY(n) SNOWCRASH_STRINGIFY_HELPER(n)
#   define SNOWCRASH_STRINGIFY_HELPER(n) #n
#endif

#define SNOWCRASH_VERSION_STRING_HELPER "v" \
                                        SNOWCRASH_STRINGIFY(SNOWCRASH_MAJOR_VERSION) "." \
                                        SNOWCRASH_STRINGIFY(SNOWCRASH_MINOR_VERSION) "." \
                                        SNOWCRASH_STRINGIFY(SNOWCRASH_PATCH_VERSION)

#if SNOWCRASH_VERSION_IS_RELEASE
#   define SNOWCRASH_VERSION_STRING SNOWCRASH_VERSION_STRING_HELPER
#else
#   define SNOWCRASH_VERSION_STRING SNOWCRASH_VERSION_STRING_HELPER "-pre"
#endif

#endif

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
redsnow-0.1.6 ext/snowcrash/src/Version.h
redsnow-0.1.5 ext/snowcrash/src/Version.h
redsnow-0.1.4 ext/snowcrash/src/Version.h
redsnow-0.1.3 ext/snowcrash/src/Version.h
redsnow-0.1.2 ext/snowcrash/src/Version.h
redsnow-0.1.1 ext/snowcrash/src/Version.h
redsnow-0.1.0 ext/snowcrash/src/Version.h