File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
17
## 2.0.1 - 2022-24-01
4
18
5
19
- 🐛 FIX: Crash when file ends with empty blockquote line.
Original file line number Diff line number Diff line change 1
1
"""A Python port of Markdown-It"""
2
2
__all__ = ("MarkdownIt" ,)
3
- __version__ = "2.0.1 "
3
+ __version__ = "2.1.0 "
4
4
5
5
from .main import MarkdownIt
You can’t perform that action at this time.
0 commit comments