File tree Expand file tree Collapse file tree 5 files changed +27
-7
lines changed
Expand file tree Collapse file tree 5 files changed +27
-7
lines changed Original file line number Diff line number Diff line change 1+ Version 2.2
2+ ===========
3+
4+ Released 2011-09-03
5+
6+ * New features:
7+
8+ - `json_dump_callback()`: Pass the encoder output to a callback
9+ function in chunks.
10+
11+ * Bug fixes:
12+
13+ - `json_string_set()`: Check that target is a string and value is
14+ not NULL.
15+
16+ * Other:
17+
18+ - Documentation typo fixes and clarifications.
19+
20+
121Version 2.1
222===========
323
4- Release 2011-06-10
24+ Released 2011-06-10
525
626* New features:
727
Original file line number Diff line number Diff line change 11AC_PREREQ ( [ 2.60] )
2- AC_INIT ( [ jansson] , [ 2.1 ] , [ petri@digip.org] )
2+ AC_INIT ( [ jansson] , [ 2.2 ] , [ petri@digip.org] )
33
44AM_INIT_AUTOMAKE ( [ 1.10 foreign] )
55
Original file line number Diff line number Diff line change 4848# built documents.
4949#
5050# The short X.Y version.
51- version = '2.1 '
51+ version = '2.2 '
5252# The full version, including alpha/beta/rc tags.
53- release = '2.1 '
53+ release = '2.2 '
5454
5555# The language for content autogenerated by Sphinx. Refer to documentation
5656# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ libjansson_la_SOURCES = \
1717 value.c
1818libjansson_la_LDFLAGS = \
1919 -export-symbols-regex '^json_' \
20- -version-info 5 :0:1
20+ -version-info 6 :0:2
2121
2222if GCC
2323# These flags are gcc specific
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ extern "C" {
2121/* version */
2222
2323#define JANSSON_MAJOR_VERSION 2
24- #define JANSSON_MINOR_VERSION 1
24+ #define JANSSON_MINOR_VERSION 2
2525#define JANSSON_MICRO_VERSION 0
2626
2727/* Micro version is omitted if it's 0 */
28- #define JANSSON_VERSION "2.1 "
28+ #define JANSSON_VERSION "2.2 "
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 >= ... */
You can’t perform that action at this time.
0 commit comments