jansson 1.1.3
[jansson.git] / CHANGES
1 Version 1.1.3, released 2009-12-18
2
3 * Encode reals correctly, so that first encoding and then decoding a
4   real always produces the same value
5 * Don't export private symbols in libjansson.so
6
7
8 Version 1.1.2, released 2009-11-08
9
10 * Fix a bug where an error message was not produced if the input file
11   could not be opened in json_load_file()
12 * Fix an assertion failure in decoder caused by a minus sign without a
13   digit after it
14 * Remove an unneeded include for stdint.h in jansson.h
15
16
17 Version 1.1.1, released 2009-10-26
18
19 * All documentation files were not distributed with v1.1; build
20   documentation in make distcheck to prevent this in the future
21 * Fix v1.1 release date in CHANGES
22
23
24 Version 1.1, released 2009-10-20
25
26 * API additions and improvements:
27   - Extend array and object APIs
28   - Add functions to modify integer, real and string values
29   - Improve argument validation
30   - Use unsigned int instead of uint32_t for encoding flags
31 * Enhance documentation
32   - Add getting started guide and tutorial
33   - Fix some typos
34   - General clarifications and cleanup
35 * Check for integer and real overflows and underflows in decoder
36 * Make singleton values thread-safe (true, false and null)
37 * Enhance circular reference handling
38 * Don't define -std=c99 in AM_CFLAGS
39 * Add C++ guards to jansson.h
40 * Minor performance and portability improvements
41 * Expand test coverage
42
43
44 Version 1.0.4, released 2009-10-11
45
46 * Relax Autoconf version requirement to 2.59
47 * Make Jansson compile on platforms where plain char is unsigned
48 * Fix API tests for object
49
50
51 Version 1.0.3, released 2009-09-14
52
53 * Check for integer and real overflows and underflows in decoder
54 * Use the Python json module for tests, or simplejson if the json
55   module is not found
56 * Distribute changelog (this file)
57
58
59 Version 1.0.2, released 2009-09-08
60
61 * Handle EOF correctly in decoder
62
63
64 Version 1.0.1, released 2009-09-04
65
66 * Fixed broken json_is_boolean()
67
68
69 Version 1.0, released 2009-08-25
70
71 * Initial release