Bump the version up to 0.13
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
cmake_minimum_required(VERSION 2.8.7)
|
cmake_minimum_required(VERSION 2.8.7)
|
||||||
cmake_policy(SET CMP0048 NEW)
|
cmake_policy(SET CMP0048 NEW)
|
||||||
project(json-c VERSION 0.12.99)
|
project(json-c VERSION 0.13)
|
||||||
|
|
||||||
|
|
||||||
include(CheckSymbolExists)
|
include(CheckSymbolExists)
|
||||||
|
|||||||
2
Doxyfile
2
Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = json-c
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# 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
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ libjson_cinclude_HEADERS = \
|
|||||||
random_seed.h \
|
random_seed.h \
|
||||||
strerror_override.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 = \
|
libjson_c_la_SOURCES = \
|
||||||
arraylist.c \
|
arraylist.c \
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
Release checklist:
|
Release checklist:
|
||||||
|
|
||||||
release=0.12
|
release=0.13
|
||||||
git clone https://github.com/json-c/json-c json-c-${release}
|
git clone https://github.com/json-c/json-c json-c-${release}
|
||||||
cd json-c-${release}
|
cd json-c-${release}
|
||||||
|
|
||||||
|
|||||||
@@ -175,7 +175,7 @@
|
|||||||
#define PACKAGE_NAME "JSON C Library"
|
#define PACKAGE_NAME "JSON C Library"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "JSON C Library 0.12.99"
|
#define PACKAGE_STRING "JSON C Library 0.13"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "json-c"
|
#define PACKAGE_TARNAME "json-c"
|
||||||
@@ -184,13 +184,13 @@
|
|||||||
#define PACKAGE_URL "https://github.com/json-c/json-c"
|
#define PACKAGE_URL "https://github.com/json-c/json-c"
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "0.12.99"
|
#define PACKAGE_VERSION "0.13"
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
#define STDC_HEADERS 1
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "0.12.99"
|
#define VERSION "0.13"
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
/* Define to empty if `const' does not conform to ANSI C. */
|
||||||
/* #undef const */
|
/* #undef const */
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
AC_PREREQ(2.64)
|
AC_PREREQ(2.64)
|
||||||
|
|
||||||
# Process this file with autoconf to produce a configure script.
|
# 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
|
AM_INIT_AUTOMAKE
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the MIT license. See COPYING for details.
|
* it under the terms of the MIT license. See COPYING for details.
|
||||||
@@ -13,12 +13,12 @@
|
|||||||
#define _json_c_version_h_
|
#define _json_c_version_h_
|
||||||
|
|
||||||
#define JSON_C_MAJOR_VERSION 0
|
#define JSON_C_MAJOR_VERSION 0
|
||||||
#define JSON_C_MINOR_VERSION 12
|
#define JSON_C_MINOR_VERSION 13
|
||||||
#define JSON_C_MICRO_VERSION 99
|
#define JSON_C_MICRO_VERSION 00
|
||||||
#define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \
|
#define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \
|
||||||
(JSON_C_MINOR_VERSION << 8) | \
|
(JSON_C_MINOR_VERSION << 8) | \
|
||||||
JSON_C_MICRO_VERSION)
|
JSON_C_MICRO_VERSION)
|
||||||
#define JSON_C_VERSION "0.12.99"
|
#define JSON_C_VERSION "0.13"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see JSON_C_VERSION
|
* @see JSON_C_VERSION
|
||||||
|
|||||||
Reference in New Issue
Block a user