Skip to content

Commit ee27b7e

Browse files
committed
jansson 2.7
1 parent 391d910 commit ee27b7e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ endif (WIN32)
7878
# set (JANSSON_VERSION "2.3.1")
7979
# set (JANSSON_SOVERSION 2)
8080

81-
set(JANSSON_DISPLAY_VERSION "2.6")
81+
set(JANSSON_DISPLAY_VERSION "2.7")
8282

8383
# This is what is required to match the same numbers as automake's
84-
set(JANSSON_VERSION "4.6.0")
84+
set(JANSSON_VERSION "4.7.0")
8585
set(JANSSON_SOVERSION 4)
8686

8787
# for CheckFunctionKeywords

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.60])
2-
AC_INIT([jansson], [2.6], [[email protected]])
2+
AC_INIT([jansson], [2.7], [[email protected]])
33

44
AC_CONFIG_AUX_DIR([.])
55
AM_INIT_AUTOMAKE([1.10 foreign])

doc/apiref.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ type whose address should be passed.
13131313
:func:`json_string_value()` internally, so it exists as long as
13141314
there are still references to the corresponding JSON string.
13151315

1316-
``s%`` (string) [const char \*, size_t *]
1316+
``s%`` (string) [const char \*, size_t \*]
13171317
Convert a JSON string to a pointer to a NULL terminated UTF-8
13181318
string and its length.
13191319

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '2.6'
51+
version = '2.7'
5252
# The full version, including alpha/beta/rc tags.
5353
release = version
5454

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ libjansson_la_SOURCES = \
2323
libjansson_la_LDFLAGS = \
2424
-no-undefined \
2525
-export-symbols-regex '^json_' \
26-
-version-info 10:0:6
26+
-version-info 11:0:7

src/jansson.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ extern "C" {
2121
/* version */
2222

2323
#define JANSSON_MAJOR_VERSION 2
24-
#define JANSSON_MINOR_VERSION 6
24+
#define JANSSON_MINOR_VERSION 7
2525
#define JANSSON_MICRO_VERSION 0
2626

2727
/* Micro version is omitted if it's 0 */
28-
#define JANSSON_VERSION "2.6"
28+
#define JANSSON_VERSION "2.7"
2929

3030
/* Version as a 3-byte hex number, e.g. 0x010201 == 1.2.1. Use this
3131
for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */

0 commit comments

Comments
 (0)