diff --git a/CHANGELOG.md b/CHANGELOG.md index e680a764..1db543fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 0.6.0 - 2020-12-15 + +🗑 DEPRECATE: Move plugins to `mdit_py_plugins` + +Plugins (in `markdown_it.extensions`) have now been moved to [executablebooks/mdit-py-plugins](https://github.com/executablebooks/mdit-py-plugins). +This will allow for their maintenance to occur on a different cycle to the core code, facilitating the release of a v1.0.0 for this package + +🔧 MAINTAIN: Add [mypy](https://mypy.readthedocs.io) type-checking, thanks to [@hukkinj1](https://github.com/hukkinj1). + ## 0.5.8 - 2020-12-13 ✨ NEW: Add linkify, thanks to [@tsutsu3](https://github.com/tsutsu3). diff --git a/markdown_it/__init__.py b/markdown_it/__init__.py index 03ea64fb..15e4348a 100644 --- a/markdown_it/__init__.py +++ b/markdown_it/__init__.py @@ -1,4 +1,4 @@ from .main import MarkdownIt # noqa: F401 -__version__ = "0.5.8" +__version__ = "0.6.0"