Skip to content

Commit

Permalink
Releasing 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mitya57 committed Jan 31, 2021
1 parent b5784e4 commit c411a8e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
Version 3.1.0, 2021-01-31
=========================

Incompatible changes:

* Python versions older than 3.6 are no longer supported.

Other changes:

* Instead of ``pkg_resources``, ``importlib.metadata`` is now used.
* For Markdown markup, ``markdown-extensions.yaml`` files are now supported
in addition to ``markdown-extensions.txt`` files.
* Type annotations were added for public API.
* The reStructuredText markup no longer raises exceptions for invalid markup.
* MathJax v3 is now supported in addition to v2. Also, the Arch Linux mathjax
packages are now supported (issue #4).
* Added Pygments CSS support for the ``pymdownx.highlight`` Markdown extension.

Version 3.0.0, 2018-05-03
=========================

Expand Down
2 changes: 1 addition & 1 deletion markups/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from markups.restructuredtext import ReStructuredTextMarkup
from markups.textile import TextileMarkup

__version_tuple__ = (3, 0, 0)
__version_tuple__ = (3, 1, 0)
__version__ = '.'.join(map(str, __version_tuple__))

builtin_markups = [MarkdownMarkup, ReStructuredTextMarkup, TextileMarkup]
Expand Down

0 comments on commit c411a8e

Please sign in to comment.