aboutsummaryrefslogtreecommitdiff
path: root/changelog.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-08-01 12:05:34 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-01 12:05:34 -0700
commit97354326ebf531c2ac1ec9c96440aaa3eb047366 (patch)
treec31c94dcf276e64d540903e36e07340c8d62ad32 /changelog.txt
parentc94efe8d3adbfbe6418c7ea59ab3802472c7e4b2 (diff)
Bump version to 0.28, update changelog.
Diffstat (limited to 'changelog.txt')
-rw-r--r--changelog.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/changelog.txt b/changelog.txt
index 4ba1783..6881c13 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,38 @@
+[0.28]
+
+ * Allow unlimited balanced pairs of parentheses in link URLs
+ (@kivikakk, jgm/cmark#166). The rationale is that there are many URLs
+ containing unescaped nested parentheses.
+ * Change Rule 14 for Emphasis. Previously the nesting
+ Strong (Emph (...)) was preferred over Emph (Strong (...)).
+ This change makes Emph (Strong (...)) preferred.
+ Note that the commonmark reference implementations
+ were not entirely consistent about this rule, giving
+ different results for
+
+ ***hi***
+
+ and
+
+ ***hi****
+
+ This change simplifies parsing. It goes against the majority
+ of implementations, but only on something utterly trivial.
+ * Acknowledge Aaron Swartz's role in developing Markdown.
+ * Remove misleading backslash in example for disabling image markup
+ (Matthias Geier).
+ * Fix Unicode terminology (general category, not class)
+ (Philipp Matthias Schaefer).
+ * Add another illustrative case for code spans (#463).
+ * Remove possibly misleading 'either's (#467).
+ * Fix typo (Aidan Woods).
+ * Clarify that some blocks can contain code spans (Matthias Geier).
+ * Fix typo and clarified tab expansion rule (Scott Abbey).
+ * Add a missing "iff" (Matthias Geier).
+ * Add release checklist.
+ * Added npm package for spec (Vitaly Puzrin).
+ * Remove SPEC variable from Makefile.
+
[0.27]
* Update statement on blank lines and lists (Jesse Rosenthal).