]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Update the master branch to version 0.17.99
authorEric Haszlakiewicz <erh+git@nimenees.com>
Sat, 12 Aug 2023 19:08:59 +0000 (19:08 +0000)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Sat, 12 Aug 2023 19:08:59 +0000 (19:08 +0000)
CMakeLists.txt
RELEASE_CHECKLIST.txt
json-c.sym
json_c_version.h

index 983148ce9f014ed3ed5c242ffd4dea4ab9103d40..d0115d45953bdaec3f3653ac72429807649aa9e8 100644 (file)
@@ -10,7 +10,7 @@ cmake_policy(SET CMP0048 NEW)
 
 # JSON-C library is C only project.
 # PROJECT_VERSION{,_MAJOR,_MINOR,_PATCH} set by project():
-project(json-c LANGUAGES C VERSION 0.16.99)
+project(json-c LANGUAGES C VERSION 0.17.99)
 
 # Targets may not link directly to themselves.
 cmake_policy(SET CMP0038 NEW)
@@ -472,7 +472,7 @@ add_library(${PROJECT_NAME}
     ${JSON_C_HEADERS}
 )
 set_target_properties(${PROJECT_NAME} PROPERTIES
-    VERSION 5.2.0
+    VERSION 5.3.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 8720c3e5a3ca0a69153bf2f78296467c0d51099b..6fe4d402951768081610278d370a4b3903f6eb3f 100644 (file)
@@ -141,12 +141,10 @@ Use ${release}.99 to indicate a version "newer" than anything on the branch:
        Update the version in json_c_version.h
        Update the version in CMakeLists.txt
 
-Update RELEASE_CHECKLIST.txt, set release=${release}+1
+Update the set_target_properties() line in CmakeLists.txt to match the release branch.
 
 Add a new empty section to the json-c.sym file, for ${release}+1
 
-Update the set_target_properties() line in CmakeLists.txt to match the release branch.
-
     git commit -a -m "Update the master branch to version ${release}.99"
     git push
 
index c7501bb21d6658e2fec77ad0f65db6f4bf1d624a..e977171c2f0d9609d4671336551c95f939635ff0 100644 (file)
@@ -176,3 +176,7 @@ JSONC_0.17 {
     json_patch_apply;
 #    array_list_insert_idx is intentionally not exported
 } JSONC_0.16;
+
+JSONC_0.18 {
+#  global:
+} JSONC_0.17;
index f0e8d67bd5b5c8dd160263a6214769abc1de40e7..8bf2c3482906f56c3616634f68033933ee5fc9fe 100644 (file)
@@ -17,11 +17,11 @@ extern "C" {
 #endif
 
 #define JSON_C_MAJOR_VERSION 0
-#define JSON_C_MINOR_VERSION 16
+#define JSON_C_MINOR_VERSION 17
 #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.16.99"
+#define JSON_C_VERSION "0.17.99"
 
 #ifndef JSON_EXPORT
 #if defined(_MSC_VER) && defined(JSON_C_DLL)