From: Eric Haszlakiewicz Date: Sat, 12 Aug 2023 18:59:13 +0000 (+0000) Subject: Bump version to 0.17 X-Git-Tag: json-c-0.17-20230812~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21c70bd7670e3f51c1c80c68d15d6dbbf9c37b58;p=thirdparty%2Fjson-c.git Bump version to 0.17 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 983148ce..0aa1b64b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) # 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 diff --git a/json_c_version.h b/json_c_version.h index f0e8d67b..808f6b75 100644 --- a/json_c_version.h +++ b/json_c_version.h @@ -17,11 +17,11 @@ extern "C" { #endif #define JSON_C_MAJOR_VERSION 0 -#define JSON_C_MINOR_VERSION 16 -#define JSON_C_MICRO_VERSION 99 +#define JSON_C_MINOR_VERSION 17 +#define JSON_C_MICRO_VERSION 0 #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" #ifndef JSON_EXPORT #if defined(_MSC_VER) && defined(JSON_C_DLL)