diff --git a/changelog b/changelog index 602339a..8ab6cb7 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,11 @@ +Version 4.1.0, 2024-12-08 +========================= + +* Incompatible change: Python 3.9 is no longer supported. +* Made the order of Markdown extensions deterministic + (fixes a problem with ``pymdownx.superfences``). +* Adopted ruff for code quality checks and auto-formatting. + Version 4.0.0, 2023-01-16 ========================= diff --git a/markups/__init__.py b/markups/__init__.py index 4cc2a6a..6836ba2 100644 --- a/markups/__init__.py +++ b/markups/__init__.py @@ -11,7 +11,7 @@ from markups.restructuredtext import ReStructuredTextMarkup from markups.textile import TextileMarkup -__version_tuple__ = (4, 0, 0) +__version_tuple__ = (4, 1, 0) __version__ = ".".join(map(str, __version_tuple__)) __all__ = [