Bump version to 0.14 and shared library version to 5.0.0

This commit is contained in:
Eric Haszlakiewicz
2020-04-19 03:40:37 +00:00
parent 31ab57ca8b
commit 4824a38318
4 changed files with 10 additions and 10 deletions

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)