Browse Source

Bump version to 0.14 and shared library version to 5.0.0

tags/json-c-0.14-20200419
Eric Haszlakiewicz 5 years ago
parent
commit
4824a38318
4 changed files with 10 additions and 10 deletions
  1. +3
    -3
      CMakeLists.txt
  2. +1
    -1
      Doxyfile
  3. +3
    -3
      config.h.win32
  4. +3
    -3
      json_c_version.h

+ 3
- 3
CMakeLists.txt View File

@@ -7,7 +7,7 @@ if(POLICY CMP0048)
endif()

# JSON-C library is C only project.
project(json-c LANGUAGES C VERSION 0.13.99)
project(json-c LANGUAGES C VERSION 0.14)

# If we've got 3.0 then it's good, let's provide support. Otherwise, leave it be.
if(POLICY CMP0038)
@@ -381,8 +381,8 @@ add_library(${PROJECT_NAME}
${JSON_C_HEADERS}
)
set_target_properties(${PROJECT_NAME} PROPERTIES
VERSION 4.0.0
SOVERSION 4)
VERSION 5.0.0
SOVERSION 5)

# If json-c is used as subroject it set to target correct interface -I flags and allow
# to build external target without extra include_directories(...)


+ 1
- 1
Doxyfile View File

@@ -38,7 +38,7 @@ PROJECT_NAME = json-c
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.13.99
PROJECT_NUMBER = 0.14

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a


+ 3
- 3
config.h.win32 View File

@@ -177,7 +177,7 @@
#define PACKAGE_NAME "JSON C Library"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "JSON C Library 0.13.99"
#define PACKAGE_STRING "JSON C Library 0.14"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "json-c"
@@ -186,13 +186,13 @@
#define PACKAGE_URL "https://github.com/json-c/json-c"

/* Define to the version of this package. */
#define PACKAGE_VERSION "0.13.99"
#define PACKAGE_VERSION "0.14"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "0.13.99"
#define VERSION "0.14"

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */


+ 3
- 3
json_c_version.h View File

@@ -13,11 +13,11 @@
#define _json_c_version_h_

#define JSON_C_MAJOR_VERSION 0
#define JSON_C_MINOR_VERSION 13
#define JSON_C_MICRO_VERSION 99
#define JSON_C_MINOR_VERSION 14
#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.13.99"
#define JSON_C_VERSION "0.14"

#ifndef JSON_EXPORT
#if defined(_MSC_VER)


Loading…
Cancel
Save