Bump the version numbers for the 0.11 release.

This commit is contained in:
Eric Haszlakiewicz
2013-03-31 21:33:59 -05:00
parent 09c2e72b18
commit 4f4c3c17d4
6 changed files with 17 additions and 17 deletions

View File

@@ -23,7 +23,7 @@ PROJECT_NAME = json-c
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 0.10.99
PROJECT_NUMBER = 0.11
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.

View File

@@ -36,7 +36,7 @@ libjson_cinclude_HEADERS = \
#libjsonx_include_HEADERS = \
# json_config.h
libjson_c_la_LDFLAGS = -version-info 2:0:0 -no-undefined
libjson_c_la_LDFLAGS = -version-info 3:0:1 -no-undefined
if ENABLE_OLDNAME_COMPAT
libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined -ljson-c

View File

@@ -302,7 +302,7 @@ libjson_cinclude_HEADERS = \
#
#libjsonx_include_HEADERS = \
# json_config.h
libjson_c_la_LDFLAGS = -version-info 2:0:0 -no-undefined
libjson_c_la_LDFLAGS = -version-info 3:0:1 -no-undefined
@ENABLE_OLDNAME_COMPAT_TRUE@libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined -ljson-c
# Temporary libjson library. This will be removed after one release.

20
configure vendored
View File

@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for json-c 0.10.99.
# Generated by GNU Autoconf 2.68 for json-c 0.11.
#
# Report bugs to <json-c@googlegroups.com>.
#
@@ -709,8 +709,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='json-c'
PACKAGE_TARNAME='json-c'
PACKAGE_VERSION='0.10.99'
PACKAGE_STRING='json-c 0.10.99'
PACKAGE_VERSION='0.11'
PACKAGE_STRING='json-c 0.11'
PACKAGE_BUGREPORT='json-c@googlegroups.com'
PACKAGE_URL=''
@@ -1424,7 +1424,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures json-c 0.10.99 to adapt to many kinds of systems.
\`configure' configures json-c 0.11 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1494,7 +1494,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of json-c 0.10.99:";;
short | recursive ) echo "Configuration of json-c 0.11:";;
esac
cat <<\_ACEOF
@@ -1596,7 +1596,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
json-c configure 0.10.99
json-c configure 0.11
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2019,7 +2019,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by json-c $as_me 0.10.99, which was
It was created by json-c $as_me 0.11, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@@ -2835,7 +2835,7 @@ fi
# Define the identity of the package.
PACKAGE=json-c
VERSION=0.10.99
VERSION=0.11
cat >>confdefs.h <<_ACEOF
@@ -11449,7 +11449,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by json-c $as_me 0.10.99, which was
This file was extended by json-c $as_me 0.11, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -11515,7 +11515,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
json-c config.status 0.10.99
json-c config.status 0.11
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"

View File

@@ -1,7 +1,7 @@
AC_PREREQ(2.52)
# Process this file with autoconf to produce a configure script.
AC_INIT([json-c], 0.10.99, [json-c@googlegroups.com])
AC_INIT([json-c], 0.11, [json-c@googlegroups.com])
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)

View File

@@ -9,12 +9,12 @@
#define _json_c_version_h_
#define JSON_C_MAJOR_VERSION 0
#define JSON_C_MINOR_VERSION 10
#define JSON_C_MICRO_VERSION 99
#define JSON_C_MINOR_VERSION 11
#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.10.99"
#define JSON_C_VERSION "0.11"
const char *json_c_version(void); /* Returns JSON_C_VERSION */
int json_c_version_num(void); /* Returns JSON_C_VERSION_NUM */