Skip to content

Commit

Permalink
Bump version to 0.22.1, rebuild dist and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Nov 18, 2015
1 parent fb82315 commit b7bf33e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[0.22.1]

* README: Use an https URL for commonmark.js (#71).
* README: Fixed typo (#70).
* Reset `container` after closing containing lists (#67).
* Use mdurl 1.0.1, to avoid problems with Google closure
compiler (#66).
* Adjusted .npmignore so the package doesn't include
extraneous files (#72, Hypercubed).

[0.22.0]

* Added `iframe` to whitelist of HTML block tags (as per spec).
Expand Down
1 change: 1 addition & 0 deletions dist/commonmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@ var incorporateLine = function(ln) {
// Check to see if we've hit 2nd blank line; if so break out of list:
if (this.blank && container._lastLineBlank) {
this.breakOutOfLists(container);
container = this.tip;
}

var matchedLeaf = container.type !== 'Paragraph' &&
Expand Down
2 changes: 1 addition & 1 deletion dist/commonmark.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "name": "commonmark",
"description": "a strongly specified, highly compatible variant of Markdown",
"version": "0.22.0",
"version": "0.22.1",
"homepage": "http://commonmark.org",
"keywords":
[ "markdown",
Expand Down

0 comments on commit b7bf33e

Please sign in to comment.