File tree Expand file tree Collapse file tree 5 files changed +36
-5
lines changed
Expand file tree Collapse file tree 5 files changed +36
-5
lines changed Original file line number Diff line number Diff line change 1+ Version 2.0.1
2+ =============
3+
4+ Released 2011-03-31
5+
6+ * Bug fixes:
7+
8+ - Replace a few `malloc()` and `free()` calls with their
9+ counterparts that support custom memory management.
10+
11+ - Fix object key hashing in json_unpack() strict checking mode.
12+
13+ - Fix the parentheses in JANSSON_VERSION_HEX macro.
14+
15+ - Fix `json_object_size()` return value.
16+
17+ - Fix a few compilation issues.
18+
19+ * Portability:
20+
21+ - Enhance portability of `va_copy()`.
22+
23+ - Test framework portability enhancements.
24+
25+ * Documentation:
26+
27+ - Distribute ``doc/upgrading.rst`` with the source tarball.
28+
29+ - Build documentation in strict mode in ``make distcheck``.
30+
31+
132Version 2.0
233===========
334
Original file line number Diff line number Diff line change 11AC_PREREQ ( [ 2.60] )
2- AC_INIT ( [ jansson] , [ 2.0] , [ petri@digip.org] )
2+ AC_INIT ( [ jansson] , [ 2.0.1 ] , [ petri@digip.org] )
33
44AM_INIT_AUTOMAKE ( [ 1.10 foreign] )
55
Original file line number Diff line number Diff line change 5050# The short X.Y version.
5151version = '2.0'
5252# The full version, including alpha/beta/rc tags.
53- release = '2.0'
53+ release = '2.0.1 '
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 4:0 :0
20+ -version-info 4:1 :0
2121
2222if GCC
2323# These flags are gcc specific
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ extern "C" {
2222
2323#define JANSSON_MAJOR_VERSION 2
2424#define JANSSON_MINOR_VERSION 0
25- #define JANSSON_MICRO_VERSION 0
25+ #define JANSSON_MICRO_VERSION 1
2626
2727/* Micro version is omitted if it's 0 */
28- #define JANSSON_VERSION "2.0"
28+ #define JANSSON_VERSION "2.0.1 "
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