]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Bump the version up to 0.13
authorEric Haszlakiewicz <erh+git@nimenees.com>
Thu, 7 Dec 2017 23:03:29 +0000 (18:03 -0500)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Thu, 7 Dec 2017 23:03:29 +0000 (18:03 -0500)
CMakeLists.txt
Doxyfile
Makefile.am
RELEASE_CHECKLIST.txt
config.h.win32
configure.ac
json_c_version.h

index 15492df83912840e087a523e372b25632ddaaca5..6b38781edf7251c7f1105c7ef3a137a147c39eb8 100644 (file)
@@ -2,7 +2,7 @@
 
 cmake_minimum_required(VERSION 2.8.7)
 cmake_policy(SET CMP0048 NEW)
-project(json-c VERSION 0.12.99)
+project(json-c VERSION 0.13)
 
 
 include(CheckSymbolExists)
index 31e902585ab0110208074be6ff44c53b864dfa95..aa7face58391ec31b5554d66e9bf463102dabece 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.12.99
+PROJECT_NUMBER         = 0.13
 
 # 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 9e86ad8af5c0075b328dc53a7dd9e36b957fed88..6ff103dab129f56006d0f07754ab1a964442ebaf 100644 (file)
@@ -40,7 +40,7 @@ libjson_cinclude_HEADERS = \
        random_seed.h \
        strerror_override.h
 
-libjson_c_la_LDFLAGS = -version-info 3:0:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
+libjson_c_la_LDFLAGS = -version-info 3:1:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
 
 libjson_c_la_SOURCES = \
        arraylist.c \
index 642cefbba51fe321b3dc3f331c0deb8aef471357..28cb97304c14d33e0569bdd07daf7946167831fe 100644 (file)
@@ -1,7 +1,7 @@
 
 Release checklist:
 
-release=0.12
+release=0.13
 git clone https://github.com/json-c/json-c json-c-${release}
 cd json-c-${release}
 
index 3e8b2182ff41b60fe1ea18f7919211768daa48b7..fc4c4b03fce3d33156e500359d32cf1701d38d2d 100644 (file)
 #define PACKAGE_NAME "JSON C Library"\r
 \r
 /* Define to the full name and version of this package. */\r
-#define PACKAGE_STRING "JSON C Library 0.12.99"\r
+#define PACKAGE_STRING "JSON C Library 0.13"\r
 \r
 /* Define to the one symbol short name of this package. */\r
 #define PACKAGE_TARNAME "json-c"\r
 #define PACKAGE_URL "https://github.com/json-c/json-c"\r
 \r
 /* Define to the version of this package. */\r
-#define PACKAGE_VERSION "0.12.99"\r
+#define PACKAGE_VERSION "0.13"\r
 \r
 /* Define to 1 if you have the ANSI C header files. */\r
 #define STDC_HEADERS 1\r
 \r
 /* Version number of package */\r
-#define VERSION "0.12.99"\r
+#define VERSION "0.13"\r
 \r
 /* Define to empty if `const' does not conform to ANSI C. */\r
 /* #undef const */\r
index d29a387d138a3755a2b9537de5f5a1d5b7036050..024c5aa0d6875f03c337ba67672767741c85d7da 100644 (file)
@@ -1,7 +1,7 @@
 AC_PREREQ(2.64)
 
 # Process this file with autoconf to produce a configure script.
-AC_INIT([json-c], 0.12.99, [json-c@googlegroups.com])
+AC_INIT([json-c], 0.13, [json-c@googlegroups.com])
 
 AM_INIT_AUTOMAKE
 
index 442174f6eb07f6b9dc06de957e3a3443c07b8e07..34db2a254117d9c0f69de106fef3f46891d8686c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012 Eric Haszlakiewicz
+ * Copyright (c) 2012,2017 Eric Haszlakiewicz
  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the MIT license. See COPYING for details.
 #define _json_c_version_h_
 
 #define JSON_C_MAJOR_VERSION 0
-#define JSON_C_MINOR_VERSION 12
-#define JSON_C_MICRO_VERSION 99
+#define JSON_C_MINOR_VERSION 13
+#define JSON_C_MICRO_VERSION 00
 #define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \
                             (JSON_C_MINOR_VERSION << 8) | \
                             JSON_C_MICRO_VERSION)
-#define JSON_C_VERSION "0.12.99"
+#define JSON_C_VERSION "0.13"
 
 /**
  * @see JSON_C_VERSION