diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 8680c515..a9ea2c0a 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,30 @@ Changelog ####################################### +0.4.0 +======================================= +Fourth prerelease of the Verto converter. +(The project was renamed to Verto from Kordac in release.) + +Adds support for the following processors: + + - :doc:`processors/iframe` + - :doc:`processors/interactive` + - :doc:`processors/heading` + - :doc:`processors/scratch` + - :doc:`processors/table-of-contents` + +Features: + + - The :doc:`processors/scratch` processor supports ``split`` and ``random`` options. + +Fixes: + + - Scratch blocks work with other extensions. + - Glossary slugs are now added to the output of Verto. + - Processors are now ordered correctly. + + 0.3.1 ======================================= Fixes: diff --git a/verto/__init__.py b/verto/__init__.py index 9adcccd2..eeffec8b 100644 --- a/verto/__init__.py +++ b/verto/__init__.py @@ -1,4 +1,4 @@ # flake8: noqa from .Verto import Verto -__version__ = '0.3.1' +__version__ = '0.4.0'