Skip to content

Commit 7e677c4

Browse files
authored
🚀 RELEASE: v2.1.0 (#213)
1 parent 145a484 commit 7e677c4

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
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.

markdown_it/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""A Python port of Markdown-It"""
22
__all__ = ("MarkdownIt",)
3-
__version__ = "2.0.1"
3+
__version__ = "2.1.0"
44

55
from .main import MarkdownIt

0 commit comments

Comments
 (0)