File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 2.1.0 - 2022-04-15
4+
5+ This release is primarily to replace the ` attrs ` package dependency,
6+ with the built-in Python ` dataclasses ` package.
7+
8+ This should not be a breaking change, for most use cases.
9+
10+ - ⬆️ UPGRADE: Drop support for EOL Python 3.6 (#194 )
11+ - ♻️ REFACTOR: Move ` Rule ` /` Delimiter ` classes from ` attrs ` to ` dataclass ` (#211 )
12+ - ♻️ REFACTOR: Move ` Token ` class from ` attrs ` to ` dataclass ` (#211 )
13+ - ‼️ Remove deprecated ` NestedTokens ` and ` nest_tokens `
14+ - ✨ NEW: Save ordered list numbering (#192 )
15+ - 🐛 FIX: Combination of blockquotes, list and newlines causes ` IndexError ` (#207 )
16+
317## 2.0.1 - 2022-24-01
418
519- 🐛 FIX: Crash when file ends with empty blockquote line.
Original file line number Diff line number Diff line change 11"""A Python port of Markdown-It"""
22__all__ = ("MarkdownIt" ,)
3- __version__ = "2.0.1 "
3+ __version__ = "2.1.0 "
44
55from .main import MarkdownIt
You can’t perform that action at this time.
0 commit comments