Skip to content

Commit

Permalink
🚀 RELEASE: v2.0.1 (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Jan 24, 2022
1 parent 99cde43 commit d6adf66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Change Log

## 2.0.1 - 2022-24-01

- 🐛 FIX: Crash when file ends with empty blockquote line.
- ✨ NEW: Add `inline_definitions` option.
This option allows for `definition` token to be inserted into the token stream, at the point where the definition is located in the source text.
It is useful for cases where one wishes to capture a "loseless" syntax tree of the parsed Markdown (in conjunction with the `store_labels` option).

## 2.0.0 - 2021-12-03

- ⬆️ Update: Sync with markdown-it v12.1.0 and CommonMark v0.30
Expand Down
2 changes: 1 addition & 1 deletion markdown_it/__init__.py
@@ -1,5 +1,5 @@
"""A Python port of Markdown-It"""
__all__ = ("MarkdownIt",)
__version__ = "2.0.0"
__version__ = "2.0.1"

from .main import MarkdownIt

0 comments on commit d6adf66

Please sign in to comment.