]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Update the master branch to version 0.19.99
authorEric Hawicz <erh+git@nimenees.com>
Sat, 27 Jun 2026 13:55:42 +0000 (09:55 -0400)
committerEric Hawicz <erh+git@nimenees.com>
Sat, 27 Jun 2026 13:55:42 +0000 (09:55 -0400)
CMakeLists.txt
json-c.sym
json_c_version.h

index c6695eb0089d4e665706d884215d15fb54640295..d46a3dcc4010bd92d3efa912f725d6c5ad2ebcb7 100644 (file)
@@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.9...3.12)
 
 # JSON-C library is C only project.
 # PROJECT_VERSION{,_MAJOR,_MINOR,_PATCH} set by project():
-project(json-c LANGUAGES C VERSION 0.18.99)
+project(json-c LANGUAGES C VERSION 0.19.99)
 
 # set default build type if not specified by user
 if(NOT CMAKE_BUILD_TYPE)
@@ -544,7 +544,7 @@ add_library(${PROJECT_NAME}
     ${JSON_C_RESOURCES}
 )
 set_target_properties(${PROJECT_NAME} PROPERTIES
-    VERSION 5.4.0
+    VERSION 5.5.0
     SOVERSION 5)
 list(APPEND CMAKE_TARGETS ${PROJECT_NAME})
 # If json-c is used as subroject it set to target correct interface -I flags and allow
index 7a20758dd7f38e9bfd935c25723078fdd3230765..30fb3b61f2da7371b1c8e422d93405701911d9b2 100644 (file)
@@ -189,3 +189,7 @@ JSONC_0.19 {
     json_pointer_set_with_cb;
     json_object_array_put_with_idx_limit_cb;
 } JSONC_0.18;
+
+JSONC_0.20 {
+#  global:
+} JSONC_0.19;
index 2bfb6a6342b7521d1c636b343f9e41acd987d5cc..801ca782374e23b870ca504be3b37dd60fc50b17 100644 (file)
@@ -17,11 +17,11 @@ extern "C" {
 #endif
 
 #define JSON_C_MAJOR_VERSION 0
-#define JSON_C_MINOR_VERSION 18
+#define JSON_C_MINOR_VERSION 19
 #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.18.99"
+#define JSON_C_VERSION "0.19.99"
 
 #ifndef JSON_EXPORT
 #if defined(_MSC_VER) && defined(JSON_C_DLL)