Skip to content

Commit ef81071

Browse files
committed
🚀 RELEASE v4.0.0
1 parent 9e93bd5 commit ef81071

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## 4.0.0 - 2024-08-10
4+
5+
This primarily drops support for Python 3.9, adds support for Python 3.13,
6+
and updates the parser to comply with Commonmark 0.31.2 and Markdown-It v14.1.0.
7+
8+
* ⬆️ Drop support for Python 3.9 in [#360](https://github.com/executablebooks/markdown-it-py/pull/360)
9+
* ⬆️ Comply with Commonmark 0.31.2 in [#362](https://github.com/executablebooks/markdown-it-py/pull/362)
10+
* 👌 Improve performance of "text" inline rule in [#347](https://github.com/executablebooks/markdown-it-py/pull/347)
11+
* 👌 Use `str.removesuffix` in [#348](https://github.com/executablebooks/markdown-it-py/pull/348)
12+
* 👌 limit the number of autocompleted cells in a table in [#364](https://github.com/executablebooks/markdown-it-py/pull/364)
13+
* 👌 fix quadratic complexity in reference parser in [#367](https://github.com/executablebooks/markdown-it-py/pull/367)
14+
* 🐛 Fix emphasis inside raw links bugs in [#320](https://github.com/executablebooks/markdown-it-py/pull/320)
15+
16+
**Full Changelog**: <https://github.com/executablebooks/markdown-it-py/compare/v3.0.0...v4.0.0>
17+
318
## 3.0.0 - 2023-06-03
419

520
⚠️ This release contains some minor breaking changes in the internal API and improvements to the parsing strictness.

markdown_it/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A Python port of Markdown-It"""
22

33
__all__ = ("MarkdownIt",)
4-
__version__ = "3.0.0"
4+
__version__ = "4.0.0"
55

66
from .main import MarkdownIt

markdown_it/port.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
- package: markdown-it/markdown-it
2-
version: 13.0.1
3-
commit: e843acc9edad115cbf8cf85e676443f01658be08
4-
date: May 3, 2022
2+
version: 14.1.0
3+
commit: 0fe7ccb4b7f30236fb05f623be6924961d296d3d
4+
date: Mar 19, 2024
55
notes:
66
- Rename variables that use python built-in names, e.g.
77
- `max` -> `maximum`

0 commit comments

Comments
 (0)