]> granicus.if.org Git - json-c/commitdiff
Update the master branch to version 0.0.14.99
authorEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 19 Apr 2020 03:57:08 +0000 (03:57 +0000)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 19 Apr 2020 03:57:08 +0000 (03:57 +0000)
CMakeLists.txt
ChangeLog
Doxyfile
RELEASE_CHECKLIST.txt
config.h.win32
json_c_version.h

index 60b50fc94cb57a7a57feba45d85d795da9e38231..e156e564eca6473ee2d0038b9f30c885ecde98ea 100644 (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.99)
 
 # 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(...)
index 7f670ea939a1680d5b40e096ee3c3bfe44fefdd5..fe57a9263f62d6882c21ef04cd9c98e0cff76d95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,16 @@
 
+Next Release 0.15
+=====================
+
+Deprecated and removed features:
+--------------------------------
+...none yet...
+
+Other changes
+--------------
+...none yet...
+
+***
 
 0.14 (up to commit 9ed00a6, 2020/04/14)
 =========================================
index a13c3ab25d7559f1887576548e25da8f3648e042..06d54e661e9791023eac66c665c57bd7138efe05 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -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.99
 
 # 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
index 09ebb1c87c50f69370f00ca0f2c102107baaddc2..32e38a3b20b79d47c2c174bdc024fbe781267fbb 100644 (file)
@@ -31,7 +31,7 @@
 ## Release creation
 
 Start creating the new release:
-    release=0.14
+    release=0.15
     git clone https://github.com/json-c/json-c json-c-${release}
 
     mkdir distcheck
index 66c5a578a09bd8e6821d8d3449e208b4a8c19c76..130378e706637314086a33cbb8eaf9d52c99a3e6 100644 (file)
 #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.99"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "json-c"
 #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.99"
 
 /* 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.99"
 
 /* Define to empty if `const' does not conform to ANSI C. */
 /* #undef const */
index 056b292ed3fddc0109cf69d68434bee4ca9d0d59..c0385c402a2ee0d47f408530d0f4e6255715160d 100644 (file)
 #define _json_c_version_h_
 
 #define JSON_C_MAJOR_VERSION 0
-#define JSON_C_MINOR_VERSION 13
+#define JSON_C_MINOR_VERSION 14
 #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.13.99"
+#define JSON_C_VERSION "0.14.99"
 
 #ifndef JSON_EXPORT
 #if defined(_MSC_VER)