1 | // /include/simdjson/simdjson_version.h automatically generated by release.py, |
2 | // do not change by hand |
3 | #ifndef SIMDJSON_SIMDJSON_VERSION_H |
4 | #define SIMDJSON_SIMDJSON_VERSION_H |
5 | |
6 | /** The version of simdjson being used (major.minor.revision) */ |
7 | #define SIMDJSON_VERSION "3.1.5" |
8 | |
9 | namespace simdjson { |
10 | enum { |
11 | /** |
12 | * The major version (MAJOR.minor.revision) of simdjson being used. |
13 | */ |
14 | SIMDJSON_VERSION_MAJOR = 3, |
15 | /** |
16 | * The minor version (major.MINOR.revision) of simdjson being used. |
17 | */ |
18 | SIMDJSON_VERSION_MINOR = 1, |
19 | /** |
20 | * The revision (major.minor.REVISION) of simdjson being used. |
21 | */ |
22 | SIMDJSON_VERSION_REVISION = 5 |
23 | }; |
24 | } // namespace simdjson |
25 | |
26 | #endif // SIMDJSON_SIMDJSON_VERSION_H |
27 | |