Skip to content

Commit 1c0a3b2

Browse files
committed
jansson 2.0.1
1 parent eab23f0 commit 1c0a3b2

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

CHANGES

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
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+
132
Version 2.0
233
===========
334

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

44
AM_INIT_AUTOMAKE([1.10 foreign])
55

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '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.

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 4:0:0
20+
-version-info 4:1:0
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
@@ -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 >= ... */

0 commit comments

Comments
 (0)