Skip to content

Commit

Permalink
Releasing 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mitya57 committed Dec 8, 2024
1 parent bb4bd56 commit 4074885
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -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
=========================

Expand Down
2 changes: 1 addition & 1 deletion markups/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = [
Expand Down

0 comments on commit 4074885

Please sign in to comment.