Skip to content

Commit 889f295

Browse files
committed
jansson 2.2
1 parent 68809cd commit 889f295

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

CHANGES

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
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+
121
Version 2.1
222
===========
323

4-
Release 2011-06-10
24+
Released 2011-06-10
525

626
* New features:
727

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.1], [petri@digip.org])
2+
AC_INIT([jansson], [2.2], [petri@digip.org])
33

44
AM_INIT_AUTOMAKE([1.10 foreign])
55

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
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.

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libjansson_la_SOURCES = \
1717
value.c
1818
libjansson_la_LDFLAGS = \
1919
-export-symbols-regex '^json_' \
20-
-version-info 5:0:1
20+
-version-info 6:0:2
2121

2222
if GCC
2323
# These flags are gcc specific

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 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 >= ... */

0 commit comments

Comments
 (0)