jansson 1.3

This commit is contained in:
Petri Lehtinen 2010-06-13 20:37:33 +03:00
parent 1347686dbf
commit 2caac965d4
4 changed files with 22 additions and 6 deletions

20
CHANGES
View file

@ -1,11 +1,27 @@
Version 1.3 (in development)
============================
Version 1.3
===========
Released 2010-06-13
* New encoding flags:
- ``JSON_PRESERVE_ORDER``: Preserve the insertion order of object
keys.
* Bug fixes:
- Fix an error that occured when an array or object was first
encoded as empty, then populated with some data, and then
re-encoded
- Fix the situation like above, but when the first encoding resulted
in an error
* Documentation:
- Clarify the documentation on reference stealing, providing an
example usage pattern
Version 1.2.1
=============

View file

@ -1,5 +1,5 @@
AC_PREREQ([2.60])
AC_INIT([jansson], [1.2.1+], [petri@digip.org])
AC_INIT([jansson], [1.3], [petri@digip.org])
AM_INIT_AUTOMAKE([1.10 foreign])

View file

@ -50,9 +50,9 @@ copyright = u'2009, 2010 Petri Lehtinen'
# built documents.
#
# The short X.Y version.
version = '1.2'
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.2.1+'
release = '1.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -15,6 +15,6 @@ libjansson_la_SOURCES = \
value.c
libjansson_la_LDFLAGS = \
-export-symbols-regex '^json_' \
-version-info 2:1:2
-version-info 3:0:3
AM_CFLAGS = -Wall -Wextra -Werror