summaryrefslogtreecommitdiff
path: root/changelog.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-06-06 18:46:41 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-06-06 18:54:46 -0700
commitdcf112add5861b99b0cb33a9c0c2e8c3edd9c2ad (patch)
treec9df32e16c3f2b7fd935592b9c0a231784e45220 /changelog.txt
parent7d3fc1e3d39e57eed84e6918b2e7d38b0186319d (diff)
Updated changelog.
Diffstat (limited to 'changelog.txt')
-rw-r--r--changelog.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/changelog.txt b/changelog.txt
index e622f0b..9323ea1 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,36 @@
+[0.20.0]
+
+ * Fixed bug in list item parsing when items indented >= 4 spaces (#52).
+ * Don't allow link labels with no non-whitespace characters
+ (jgm/CommonMark#322).
+ * Fixed multiple issues with numeric entities (#33).
+ * Support CR and CRLF line endings (Ben Trask).
+ * Added test for different line endings to `api_test`.
+ * Allow NULL value in string setters (Nick Wellnhofer). (NULL
+ produces a 0-length string value.) Internally, URL and
+ title are now stored as `cmark_chunk` rather than `char *`.
+ * Fixed memory leak in `cmark_consolidate_text_nodes` (#32).
+ * Fixed `is_autolink` in the CommonMark renderer (#50). Previously *any*
+ link with an absolute URL was treated as an autolink.
+ * Cope with broken `snprintf` on Windows (Nick Wellnhofer). On Windows,
+ `snprintf` returns -1 if the output was truncated. Fall back to
+ Windows-specific `_scprintf`.
+ * Factored out `S_find_first_nonspace` in `S_proces_line`.
+ Added fields `offset`, `first_nonspace`, `indent`, and `blank`
+ to `cmark_parser` struct. This just removes some repetition.
+ * Added Racket Racket (5.3+) wrapper (Eli Barzilay).
+ * Removed -pg from Debug build flags (#47).
+ * Added Ubsan build target, to check for undefined behavior.
+ * Improved `make leakcheck`. We now return an error status if anything
+ in the loop fails. We now check `--smart` and `--normalize` options.
+ * Removed `wrapper3.py`, made `wrapper.py` work with python 2 and 3.
+ Also improved the wrapper to work with Windows, and to use smart
+ punctuation (as an example).
+ * In `wrapper.rb`, added argument for options.
+ * Revised luajit wrapper.
+ * Added build status badges to README.md.
+ * Added links to go, perl, ruby, R, and Haskell bindings to README.md.
+
[0.19.0]
* Fixed `_` emphasis parsing to conform to spec (jgm/CommonMark#317).