Skip to content

Commit 6113ad8

Browse files
authored
Bump version to v2.2.0 (#238)
Signed-off-by: Frost Ming <me@frostming.com>
1 parent d4588b8 commit 6113ad8

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## v2.2.0(2025-08-08)
2+
3+
### Added
4+
5+
- Add comprehensive usage documentation guide.
6+
- Support GFM alerts in GitHub Flavored Markdown extension.
7+
8+
### Changed
9+
10+
- Make python-slugify dependency optional for the TOC extension.
11+
12+
### Fixed
13+
14+
- Fix code formatting issues.
15+
116
## v2.1.4(2025-06-13)
217

318
### Fixed

marko/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .block import Document
2424
from .parser import ElementType
2525

26-
__version__ = "2.1.4"
26+
__version__ = "2.2.0"
2727

2828

2929
class SetupDone(Exception):

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def benchmark(session):
1919

2020
@nox.session
2121
def docs(session):
22-
session.install("-r", "docs/reqs.txt")
22+
session.install("pdm", "install", "-G", "doc", external=True)
2323
session.install("sphinx-autobuild")
2424

2525
session.run(

0 commit comments

Comments
 (0)