Update the master branch to version 0.18.99

This commit is contained in:
Eric Hawicz
2024-09-15 13:06:06 -04:00
parent 7ebdc4ddf8
commit e9bd26d568
4 changed files with 23 additions and 4 deletions

View File

@@ -17,11 +17,11 @@ extern "C" {
#endif
#define JSON_C_MAJOR_VERSION 0
#define JSON_C_MINOR_VERSION 17
#define JSON_C_MINOR_VERSION 18
#define JSON_C_MICRO_VERSION 99
#define JSON_C_VERSION_NUM \
((JSON_C_MAJOR_VERSION << 16) | (JSON_C_MINOR_VERSION << 8) | JSON_C_MICRO_VERSION)
#define JSON_C_VERSION "0.17.99"
#define JSON_C_VERSION "0.18.99"
#ifndef JSON_EXPORT
#if defined(_MSC_VER) && defined(JSON_C_DLL)