]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Update the master branch to version 0.18.99
authorEric Hawicz <erh+git@nimenees.com>
Sun, 15 Sep 2024 17:06:06 +0000 (13:06 -0400)
committerEric Hawicz <erh+git@nimenees.com>
Sun, 15 Sep 2024 17:06:06 +0000 (13:06 -0400)
CMakeLists.txt
ChangeLog
json-c.sym
json_c_version.h

index 3797cba22b5226ab7406579f6145f4bf7ba8c397..55c6e561b25b9fb18df3046cda63fe141e183ef5 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.17.99)
+project(json-c LANGUAGES C VERSION 0.18.99)
 
 # set default build type if not specified by user
 if(NOT CMAKE_BUILD_TYPE)
@@ -470,7 +470,7 @@ add_library(${PROJECT_NAME}
     ${JSON_C_HEADERS}
 )
 set_target_properties(${PROJECT_NAME} PROPERTIES
-    VERSION 5.3.0
+    VERSION 5.4.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 a5590e097d91056bdaedd49b6ea4f9334ed13352..b30f940171cf84e51a36ea1fe65dfc64d054f7bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+0.18.99 (future release)
+========================================
+
+Deprecated and removed features:
+--------------------------------
+* none yet
+
+New features
+------------
+* none yet
+
+Significant changes and bug fixes
+---------------------------------
+* none yet
+
 0.18 (up to commit 6bfab90, 2023-09-15)
 ========================================
 
index e977171c2f0d9609d4671336551c95f939635ff0..47b76e4efd1bc8042bbda8bfdb55864c998517cd 100644 (file)
@@ -180,3 +180,7 @@ JSONC_0.17 {
 JSONC_0.18 {
 #  global:
 } JSONC_0.17;
+
+JSONC_0.19 {
+#  global:
+} JSONC_0.18;
index 8bf2c3482906f56c3616634f68033933ee5fc9fe..2bfb6a6342b7521d1c636b343f9e41acd987d5cc 100644 (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)