Skip to content

Commit 358181b

Browse files
author
James McLaughlin
committed
Change version to 1.1.0
1 parent dec8f04 commit 358181b

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,27 @@ The `user_data` pointer will be forwarded from `json_settings` to allow applicat
6969
context to be passed.
7070

7171

72+
Changes in version 1.1.0
73+
------------------------
7274

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

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

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

76-
81+
* GCC warning for `static` after `const` fixed (@batrick)
7782

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

85+
* `name_length` field added to object values
7986

87+
* It is now possible to retrieve the source line/column number of a parsed `json_value` when `JSON_TRACK_SOURCE` is enabled
88+
89+
* The application may now extend `json_value` using the `value_extra` setting
90+
91+
* Un-ambiguate pow call in the case of C++ overloaded pow (@fcartegnie)
92+
93+
* Fix null pointer de-reference when a non-existing array is closed and no root value is present
8094

8195

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for libjsonparser 1.0.0.
3+
# Generated by GNU Autoconf 2.69 for libjsonparser 1.1.0.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -576,8 +576,8 @@ MAKEFLAGS=
576576
# Identity of this package.
577577
PACKAGE_NAME='libjsonparser'
578578
PACKAGE_TARNAME='libjsonparser'
579-
PACKAGE_VERSION='1.0.0'
580-
PACKAGE_STRING='libjsonparser 1.0.0'
579+
PACKAGE_VERSION='1.1.0'
580+
PACKAGE_STRING='libjsonparser 1.1.0'
581581
PACKAGE_BUGREPORT=''
582582
PACKAGE_URL=''
583583

@@ -1183,7 +1183,7 @@ if test "$ac_init_help" = "long"; then
11831183
# Omit some internal or obsolete options to make the list less imposing.
11841184
# This message is too long to be a string in the A/UX 3.1 sh.
11851185
cat <<_ACEOF
1186-
\`configure' configures libjsonparser 1.0.0 to adapt to many kinds of systems.
1186+
\`configure' configures libjsonparser 1.1.0 to adapt to many kinds of systems.
11871187
11881188
Usage: $0 [OPTION]... [VAR=VALUE]...
11891189
@@ -1244,7 +1244,7 @@ fi
12441244

12451245
if test -n "$ac_init_help"; then
12461246
case $ac_init_help in
1247-
short | recursive ) echo "Configuration of libjsonparser 1.0.0:";;
1247+
short | recursive ) echo "Configuration of libjsonparser 1.1.0:";;
12481248
esac
12491249
cat <<\_ACEOF
12501250
@@ -1330,7 +1330,7 @@ fi
13301330
test -n "$ac_init_help" && exit $ac_status
13311331
if $ac_init_version; then
13321332
cat <<\_ACEOF
1333-
libjsonparser configure 1.0.0
1333+
libjsonparser configure 1.1.0
13341334
generated by GNU Autoconf 2.69
13351335
13361336
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1385,7 +1385,7 @@ cat >config.log <<_ACEOF
13851385
This file contains any messages produced by compilers while
13861386
running configure, to aid debugging if configure makes a mistake.
13871387
1388-
It was created by libjsonparser $as_me 1.0.0, which was
1388+
It was created by libjsonparser $as_me 1.1.0, which was
13891389
generated by GNU Autoconf 2.69. Invocation command line was
13901390
13911391
$ $0 $@
@@ -3180,7 +3180,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
31803180
# report actual input values of CONFIG_FILES etc. instead of their
31813181
# values after options handling.
31823182
ac_log="
3183-
This file was extended by libjsonparser $as_me 1.0.0, which was
3183+
This file was extended by libjsonparser $as_me 1.1.0, which was
31843184
generated by GNU Autoconf 2.69. Invocation command line was
31853185
31863186
CONFIG_FILES = $CONFIG_FILES
@@ -3233,7 +3233,7 @@ _ACEOF
32333233
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
32343234
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
32353235
ac_cs_version="\\
3236-
libjsonparser config.status 1.0.0
3236+
libjsonparser config.status 1.1.0
32373237
configured by $0, generated by GNU Autoconf 2.69,
32383238
with options \\"\$ac_cs_config\\"
32393239

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
AC_PREREQ([2.49])
33

4-
AC_INIT([libjsonparser], [1.0.0], [])
5-
VERSION_MAJOR="1.0"
4+
AC_INIT([libjsonparser], [1.1.0], [])
5+
VERSION_MAJOR="1.1"
66

77
AC_CONFIG_MACRO_DIR([m4])
88

0 commit comments

Comments
 (0)