diff --git a/CHANGELOG.md b/CHANGELOG.md index 72ce62b..6c4ad9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v2.0.6 (2023-11-07) + +### Fix + +* fix(cicd): Correct flit behaviour to just work (#32) + +Signed-off-by: Chris Butler <chris.butler@redhat.com> ([`9efee45`](https://github.com/butler54/mdformat-frontmatter/commit/9efee45373cf77bdf025c6aa31f3b4a565c7565f)) + + ## v2.0.5 (2023-11-07) ### Fix diff --git a/mdformat_frontmatter/__init__.py b/mdformat_frontmatter/__init__.py index f4faa35..dad0f10 100644 --- a/mdformat_frontmatter/__init__.py +++ b/mdformat_frontmatter/__init__.py @@ -1,5 +1,5 @@ """An mdformat plugin for parsing / ignoring frontmatter.""" -__version__ = "2.0.5" +__version__ = "2.0.6" from .plugin import RENDERERS, update_mdit # noqa: F401