Parcourir la source

Updated CHANGELOG.md

Benoit Blanchon il y a 11 ans
Parent
commit
ec843659d8
1 fichiers modifiés avec 12 ajouts et 0 suppressions
  1. 12 0
      CHANGELOG.md

+ 12 - 0
CHANGELOG.md

@@ -1,6 +1,18 @@
 Arduino JSON: change log
 ========================
 
+v3.3
+----
+
+* Added indented output for the JSON generator, see example bellow.
+* Added `IndentedPrint`, a decorator for `Print` to allow indented output
+
+Example:
+
+    JsonOject<2> json;
+    json["key"] = "value";
+    json.prettyPrintTo(Serial);
+
 v3.2
 ----