Skip to content

Commit 71c4e8e

Browse files
authored
Merge pull request #448 from coreyfarrell/2.12
jansson 2.12
2 parents 2a31c4f + 10afd33 commit 71c4e8e

File tree

6 files changed

+47
-7
lines changed

6 files changed

+47
-7
lines changed

CHANGES

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
Version 2.12
2+
3+
Released 2018-11-25
4+
5+
* Bug fixes:
6+
7+
- Fix error message in `json_pack()` for NULL object (#409).
8+
9+
- Avoid invalid memory read in `json_pack()` (#421).
10+
11+
- Call va_end after va_copy in `json_vsprintf()` (#427).
12+
13+
- Improve handling of formats with '?' and '*' in `json_pack()` (#438).
14+
15+
- Remove inappropriate `jsonp_free()` which caused segmentation fault in
16+
error handling (#444).
17+
18+
* Build:
19+
20+
- Add function attributes for GCC and CLANG to provide warnings on improper
21+
use of jansson routines (#404).
22+
23+
- Many CMake fixes (#408, #412, #415).
24+
25+
- Enable -Bsymbolic-functions linker flag whenever possible.
26+
27+
- Resolve various compiler warnings (#423, #430, #435, #436).
28+
29+
- Fix code coverage ignored paths (#439).
30+
31+
* Other:
32+
33+
- Test coverage improvements (#398, #400).
34+
35+
- Add VS 2017 to appveyor, update Visual Studio documentation (#417).
36+
37+
- Update copyright for 2018 (#424).
38+
39+
- Update install instructions in README (#401).
40+
141
Version 2.11
242
============
343

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ endif()
8585
# set (JANSSON_VERSION "2.3.1")
8686
# set (JANSSON_SOVERSION 2)
8787

88-
set(JANSSON_DISPLAY_VERSION "2.11")
88+
set(JANSSON_DISPLAY_VERSION "2.12")
8989

9090
# This is what is required to match the same numbers as automake's
91-
set(JANSSON_VERSION "4.11.0")
91+
set(JANSSON_VERSION "4.11.1")
9292
set(JANSSON_SOVERSION 4)
9393

9494
# 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.11], [petri@digip.org])
2+
AC_INIT([jansson], [2.12], [petri@digip.org])
33

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

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.11'
51+
version = '2.12'
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
@@ -24,5 +24,5 @@ libjansson_la_SOURCES = \
2424
libjansson_la_LDFLAGS = \
2525
-no-undefined \
2626
-export-symbols-regex '^json_' \
27-
-version-info 15:0:11 \
27+
-version-info 15:1:11 \
2828
@JSON_BSYMBOLIC_LDFLAGS@

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 11
24+
#define JANSSON_MINOR_VERSION 12
2525
#define JANSSON_MICRO_VERSION 0
2626

2727
/* Micro version is omitted if it's 0 */
28-
#define JANSSON_VERSION "2.11"
28+
#define JANSSON_VERSION "2.12"
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)