-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathversion.h
76 lines (68 loc) · 2.7 KB
/
version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* version - official jparse API, parser and utils versions
*
* "Because specs w/o version numbers are forced to commit to their original design flaws." :-)
*
* Copyright (c) 2022-2025 by Cody Boone Ferguson and Landon Curt Noll. All
* rights reserved.
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted,
* provided that the above copyright, this permission notice and text
* this comment, and the disclaimer below appear in all of the following:
*
* supporting documentation
* source copies
* source works derived from this source
* binaries derived from this source or from derived source
*
* THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
* AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE OR JSON.
*
* This JSON parser, library and tools were co-developed in 2022-2025 by Cody
* Boone Ferguson and Landon Curt Noll:
*
* @xexyl
* https://xexyl.net Cody Boone Ferguson
* https://ioccc.xexyl.net
* and:
* chongo (Landon Curt Noll, http://www.isthe.com/chongo/index.html) /\oo/\
*
* "Because sometimes even the IOCCC Judges need some help." :-)
*
* "Share and Enjoy!"
* -- Sirius Cybernetics Corporation Complaints Division, JSON spec department. :-)
*/
#if !defined(INCLUDE_JPARSE_VERSION_H)
# define INCLUDE_JPARSE_VERSION_H
/*
* NOTE: only the repo release version, the jparse tool version, the jparse
* utils (util.c, not json_util.c, see below) version and the JSON parser
* version are here. For the version of the other tools, see their header file.
*
* NOTE: the json_util.c is part of the jparse library version so when that code
* is updated the JPARSE_LIBRARY_VERSION should be updated.
*/
/*
* official jparse repo release
*
* NOTE: this should match the latest Release string in CHANGES.md
*/
#define JPARSE_REPO_VERSION "2.3.6 2025-03-11" /* format: major.minor YYYY-MM-DD */
/*
* official jparse version
*/
#define JPARSE_VERSION "2.0.0 2025-02-28" /* format: major.minor YYYY-MM-DD */
/*
* official JSON parser version
*/
#define JPARSE_LIBRARY_VERSION "2.3.0 2025-02-28" /* library version format: major.minor YYYY-MM-DD */
/*
* official utility functions (util.c) version
*/
#define JPARSE_UTILS_VERSION "2.0.6 2025-03-11" /* format: major.minor YYYY-MM-DD */
#endif /* INCLUDE_JPARSE_VERSION_H */