Skip to content

Commit 3b4ff6d

Browse files
authored
🚀 RELEASE v4.1.0 (#393)
1 parent 8951f26 commit 3b4ff6d

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

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

3+
## 4.1.0 - 2025-05-06
4+
5+
* ✨ Add `gfm-like2` preset with task lists, alerts, and single-tilde strikethrough core plugins in [#388](https://github.com/executablebooks/markdown-it-py/pull/388)
6+
* ✨ Allow plugins to register inline terminator characters in [#391](https://github.com/executablebooks/markdown-it-py/pull/391)
7+
* 👌 Fix quadratic complexity in `fragments_join` / `text_join` in [#389](https://github.com/executablebooks/markdown-it-py/pull/389), thanks to [@petricevich](https://github.com/petricevich)
8+
* 👌 Add `--stdin` option to CLI for reading Markdown from standard input in [#379](https://github.com/executablebooks/markdown-it-py/pull/379), thanks to [@mcepl](https://github.com/mcepl)
9+
* 🔧 Add typing to Scanner in [#382](https://github.com/executablebooks/markdown-it-py/pull/382), thanks to [@Alunderin](https://github.com/Alunderin)
10+
11+
**Full Changelog**: <https://github.com/executablebooks/markdown-it-py/compare/v4.0.0...v4.1.0>
12+
313
## 4.0.0 - 2024-08-10
414

515
This primarily drops support for Python 3.9, adds support for Python 3.13,

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__ = "4.0.0"
4+
__version__ = "4.1.0"
55

66
from .main import MarkdownIt

0 commit comments

Comments
 (0)