Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## v2.2.0(2025-08-08)

### Added

- Add comprehensive usage documentation guide.
- Support GFM alerts in GitHub Flavored Markdown extension.

### Changed

- Make python-slugify dependency optional for the TOC extension.

### Fixed

- Fix code formatting issues.

## v2.1.4(2025-06-13)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion marko/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from .block import Document
from .parser import ElementType

__version__ = "2.1.4"
__version__ = "2.2.0"


class SetupDone(Exception):
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def benchmark(session):

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

session.run(
Expand Down
Loading