Skip to content

Commit 047a141

Browse files
committed
jansson 1.2.1
1 parent ce42e30 commit 047a141

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGES

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
Version 1.2.1
2+
=============
3+
4+
Released 2010-04-03
5+
6+
* Bug fixes:
7+
8+
- Fix reference counting on ``true``, ``false`` and ``null``
9+
- Estimate real number underflows in decoder with 0.0 instead of
10+
issuing an error
11+
12+
* Portability:
13+
14+
- Make ``int32_t`` available on all systems
15+
- Support compilers that don't have the ``inline`` keyword
16+
- Require Autoconf 2.60 (for ``int32_t``)
17+
18+
* Tests:
19+
20+
- Print test names correctly when ``VERBOSE=1``
21+
- ``test/suites/api``: Fail when a test fails
22+
- Enhance tests for iterators
23+
- Enhance tests for decoding texts that contain null bytes
24+
25+
* Documentation:
26+
27+
- Don't remove ``changes.rst`` in ``make clean``
28+
- Add a chapter on RFC conformance
29+
30+
131
Version 1.2
232
===========
333

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], [1.2], [petri@digip.org])
2+
AC_INIT([jansson], [1.2.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
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.2'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.2'
55+
release = '1.2.1'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ libjansson_la_SOURCES = \
1515
value.c
1616
libjansson_la_LDFLAGS = \
1717
-export-symbols-regex '^json_' \
18-
-version-info 2:0:2
18+
-version-info 2:1:2
1919

2020
AM_CFLAGS = -Wall -Wextra -Werror

0 commit comments

Comments
 (0)