doc: Convert CHANGES to reStructuredText and add it to HTML docs
[jansson.git] / CHANGES
1 Version 1.2 (in development)
2 ============================
3
4 * New functions:
5
6   - ``json_equal()``: Test whether two JSON values are equal
7   - ``json_copy()`` and ``json_deep_copy()``: Make shallow and deep
8     copies of JSON values
9   - Add a version of all functions taking a string argument that
10     doesn't check for valid UTF-8: ``json_string_nocheck()``,
11     ``json_string_set_nocheck()``, ``json_object_set_nocheck()``,
12     ``json_object_set_new_nocheck()``
13
14 * New encoding flags:
15
16   - ``JSON_SORT_KEYS``: Sort objects by key
17   - ``JSON_ENSURE_ASCII``: Escape all non-ASCII Unicode characters
18   - ``JSON_COMPACT``: Use a compact representation with all unneeded
19     whitespace stripped
20
21 * Bug fixes:
22
23   - Revise and unify whitespace usage in encoder
24
25 * Other changes:
26
27   - Convert ``CHANGES`` (this file) to reStructured text and add it to
28     HTML documentation
29   - Python is no longer required to run the tests
30   - Documentation can now be built by invoking ``make html``
31
32
33 Version 1.1.3
34 =============
35
36 Released 2009-12-18
37
38 * Encode reals correctly, so that first encoding and then decoding a
39   real always produces the same value
40 * Don't export private symbols in ``libjansson.so``
41
42
43 Version 1.1.2
44 =============
45
46 Released 2009-11-08
47
48 * Fix a bug where an error message was not produced if the input file
49   could not be opened in ``json_load_file()``
50 * Fix an assertion failure in decoder caused by a minus sign without a
51   digit after it
52 * Remove an unneeded include of ``stdint.h`` in ``jansson.h``
53
54
55 Version 1.1.1
56 =============
57
58 Released 2009-10-26
59
60 * All documentation files were not distributed with v1.1; build
61   documentation in make distcheck to prevent this in the future
62 * Fix v1.1 release date in ``CHANGES``
63
64
65 Version 1.1
66 ===========
67
68 Released 2009-10-20
69
70 * API additions and improvements:
71
72   - Extend array and object APIs
73   - Add functions to modify integer, real and string values
74   - Improve argument validation
75   - Use unsigned int instead of ``uint32_t`` for encoding flags
76
77 * Enhance documentation
78
79   - Add getting started guide and tutorial
80   - Fix some typos
81   - General clarifications and cleanup
82
83 * Check for integer and real overflows and underflows in decoder
84 * Make singleton values thread-safe (``true``, ``false`` and ``null``)
85 * Enhance circular reference handling
86 * Don't define ``-std=c99`` in ``AM_CFLAGS``
87 * Add C++ guards to ``jansson.h``
88 * Minor performance and portability improvements
89 * Expand test coverage
90
91
92 Version 1.0.4
93 =============
94
95 Released 2009-10-11
96
97 * Relax Autoconf version requirement to 2.59
98 * Make Jansson compile on platforms where plain ``char`` is unsigned
99 * Fix API tests for object
100
101
102 Version 1.0.3
103 =============
104
105 Released 2009-09-14
106
107 * Check for integer and real overflows and underflows in decoder
108 * Use the Python json module for tests, or simplejson if the json
109   module is not found
110 * Distribute changelog (this file)
111
112
113 Version 1.0.2
114 =============
115
116 Released 2009-09-08
117
118 * Handle EOF correctly in decoder
119
120
121 Version 1.0.1
122 =============
123
124 Released 2009-09-04
125
126 * Fixed broken ``json_is_boolean()``
127
128
129 Version 1.0
130 ===========
131
132 Released 2009-08-25
133
134 * Initial release