Make real number encoding and decoding work under all locales
[jansson.git] / CHANGES
diff --git a/CHANGES b/CHANGES
index b1a8e3a..11e9e7f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,18 +1,40 @@
-Version 2.1 (in development)
-============================
+Version 2.2
+===========
+
+Released 2011-09-03
+
+* New features:
+
+  - `json_dump_callback()`: Pass the encoder output to a callback
+    function in chunks.
+
+* Bug fixes:
+
+  - `json_string_set()`: Check that target is a string and value is
+    not NULL.
+
+* Other:
+
+  - Documentation typo fixes and clarifications.
+
+
+Version 2.1
+===========
+
+Released 2011-06-10
 
 * 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
+  - 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_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
+  - 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:
@@ -43,7 +65,7 @@ Released 2011-03-31
 
   - Fix object key hashing in json_unpack() strict checking mode.
 
-  - Fix the parentheses in JANSSON_VERSION_HEX macro.
+  - Fix the parentheses in ``JANSSON_VERSION_HEX`` macro.
 
   - Fix `json_object_size()` return value.