From afdca3ab5ef87754637f8e0c83d52441266f3a79 Mon Sep 17 00:00:00 2001 From: Eric Haszlakiewicz Date: Sun, 15 Sep 2024 16:17:32 +0000 Subject: [PATCH] Bump version to 0.18 --- CMakeLists.txt | 4 ++-- json_c_version.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3797cba2..631accf6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) # 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 diff --git a/json_c_version.h b/json_c_version.h index 8bf2c348..c8175d0e 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 17 -#define JSON_C_MICRO_VERSION 99 +#define JSON_C_MINOR_VERSION 18 +#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.17.99" +#define JSON_C_VERSION "0.18" #ifndef JSON_EXPORT #if defined(_MSC_VER) && defined(JSON_C_DLL) -- 2.47.3