summaryrefslogtreecommitdiff
path: root/changelog.c.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-14 22:59:06 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-14 22:59:52 -0800
commit539abb59e890834636dfe57ebb499f4eb5cc4e8d (patch)
treea4b802c103004148e763354d2128df96e122eb46 /changelog.c.txt
parentc4bd8dcb41cfa4b5444caec9304b0abcc07fec35 (diff)
Added changelog.c.txt and js/changelog.js.txt.
Diffstat (limited to 'changelog.c.txt')
-rw-r--r--changelog.c.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/changelog.c.txt b/changelog.c.txt
new file mode 100644
index 0000000..03917b1
--- /dev/null
+++ b/changelog.c.txt
@@ -0,0 +1,17 @@
+[0.16]
+
+ * Added xml renderer (XML representation of the CommonMark AST,
+ which is described in `CommonMark.dtd`).
+ * Reduced size of gperf entity table (Nick Wellnhofer).
+ * Reworked iterators to allow deletion of nodes during iteration
+ (Nick Wellnhofer).
+ * Optimized `S_is_leaf`.
+ * Added `cmark_iter_reset` to iterator API.
+ * Added `cmark_consolidate_text_nodes` to API to combine adjacent
+ text nodes.
+ * Added `CMARK_OPT_NORMALIZE` to options (this combines adjacent
+ text nodes).
+ * Added `--normalize` option to command-line program.
+ * Improved regex for HTML comments in inline parsing.
+ * Python is no longer required for a basic build from the
+ repository.