Skip to content

Commit

Permalink
Change version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
James McLaughlin committed Jun 12, 2014
1 parent dec8f04 commit 358181b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 12 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,27 @@ The `user_data` pointer will be forwarded from `json_settings` to allow applicat
context to be passed.


Changes in version 1.1.0
------------------------

* UTF-8 byte order marks are now skipped if present

* Allows cross-compilation by honoring --host if given (@wkz)

* Maximum size for error buffer is now exposed in header (@LB--)

* GCC warning for `static` after `const` fixed (@batrick)

* Optional support for C-style line and block comments added (@Jin-W-FS)

* `name_length` field added to object values

* It is now possible to retrieve the source line/column number of a parsed `json_value` when `JSON_TRACK_SOURCE` is enabled

* The application may now extend `json_value` using the `value_extra` setting

* Un-ambiguate pow call in the case of C++ overloaded pow (@fcartegnie)

* Fix null pointer de-reference when a non-existing array is closed and no root value is present


18 changes: 9 additions & 9 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for libjsonparser 1.0.0.
# Generated by GNU Autoconf 2.69 for libjsonparser 1.1.0.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -576,8 +576,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='libjsonparser'
PACKAGE_TARNAME='libjsonparser'
PACKAGE_VERSION='1.0.0'
PACKAGE_STRING='libjsonparser 1.0.0'
PACKAGE_VERSION='1.1.0'
PACKAGE_STRING='libjsonparser 1.1.0'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1183,7 +1183,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 libjsonparser 1.0.0 to adapt to many kinds of systems.
\`configure' configures libjsonparser 1.1.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1244,7 +1244,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of libjsonparser 1.0.0:";;
short | recursive ) echo "Configuration of libjsonparser 1.1.0:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1330,7 +1330,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
libjsonparser configure 1.0.0
libjsonparser configure 1.1.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1385,7 +1385,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 libjsonparser $as_me 1.0.0, which was
It was created by libjsonparser $as_me 1.1.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -3180,7 +3180,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 libjsonparser $as_me 1.0.0, which was
This file was extended by libjsonparser $as_me 1.1.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -3233,7 +3233,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="\\
libjsonparser config.status 1.0.0
libjsonparser config.status 1.1.0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

AC_PREREQ([2.49])

AC_INIT([libjsonparser], [1.0.0], [])
VERSION_MAJOR="1.0"
AC_INIT([libjsonparser], [1.1.0], [])
VERSION_MAJOR="1.1"

AC_CONFIG_MACRO_DIR([m4])

Expand Down

0 comments on commit 358181b

Please sign in to comment.