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