aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-06-07 21:33:59 +0300
committerPetri Lehtinen <petri@digip.org>2011-06-07 21:33:59 +0300
commitf7f7bf5ab26c721aaf8a177f2a61f06393be7242 (patch)
tree221c0078a23815254e8d0436bc4ca5ada26686f5 /CHANGES
parenta76ba52f3450cfb3ca544f7e7f451db1578822e6 (diff)
downloadjansson-f7f7bf5ab26c721aaf8a177f2a61f06393be7242.zip
jansson-f7f7bf5ab26c721aaf8a177f2a61f06393be7242.tar.gz
jansson-f7f7bf5ab26c721aaf8a177f2a61f06393be7242.tar.bz2
Prepare for relase: Add CHANGES entry for v2.1
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES33
1 files changed, 33 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 3434e48..b1a8e3a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,36 @@
+Version 2.1 (in development)
+============================
+
+* New features:
+
+ - `json_loadb()`: Decode a string with a given size, useful if the
+ string is not null terminated.
+
+ - Add JSON_ENCODE_ANY encoding flag to allow encoding any JSON
+ value. By default, only arrays and objects can be encoded. (#19)
+
+ - Add JSON_REJECT_DUPLICATES decoding flag to issue a decoding error
+ if any JSON object in the input contins duplicate keys. (#3)
+
+ - Add JSON_DISABLE_EOF_CHECK decoding flag to stop decoding after a
+ valid JSON input. This allows other data after the JSON data.
+
+* Bug fixes:
+
+ - Fix an additional memory leak when memory allocation fails in
+ `json_object_set()` and friends.
+
+ - Clear errno before calling `strtod()` for better portability. (#27)
+
+* Building:
+
+ - Avoid set-but-not-used warning/error in a test. (#20)
+
+* Other:
+
+ - Minor clarifications to documentation.
+
+
Version 2.0.1
=============