Skip to content

Commit 2caac96

Browse files
committed
jansson 1.3
1 parent 1347686 commit 2caac96

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

CHANGES

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1-
Version 1.3 (in development)
2-
============================
1+
Version 1.3
2+
===========
3+
4+
Released 2010-06-13
35

46
* New encoding flags:
57

68
- ``JSON_PRESERVE_ORDER``: Preserve the insertion order of object
79
keys.
810

11+
* Bug fixes:
12+
13+
- Fix an error that occured when an array or object was first
14+
encoded as empty, then populated with some data, and then
15+
re-encoded
16+
17+
- Fix the situation like above, but when the first encoding resulted
18+
in an error
19+
20+
* Documentation:
21+
22+
- Clarify the documentation on reference stealing, providing an
23+
example usage pattern
24+
925

1026
Version 1.2.1
1127
=============

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.1+], [petri@digip.org])
2+
AC_INIT([jansson], [1.3], [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
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '1.2'
53+
version = '1.3'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.2.1+'
55+
release = '1.3'
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:1:2
18+
-version-info 3:0:3
1919

2020
AM_CFLAGS = -Wall -Wextra -Werror

0 commit comments

Comments
 (0)