diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c4ad9e..f6513c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ +## v2.0.7 (2023-11-07) + +### Fix + +* fix: remove default behaviour of ruamel.yaml line breaking (#33) + +* fix(cicd): Correct flit behaviour to just work + +Signed-off-by: Chris Butler <chris.butler@redhat.com> + +* feat: Ensure that ruamel.yaml does not wrap lines + +Signed-off-by: Chris Butler <chris.butler@redhat.com> + +--------- + +Signed-off-by: Chris Butler <chris.butler@redhat.com> ([`a3ebe8a`](https://github.com/butler54/mdformat-frontmatter/commit/a3ebe8a8413640821ba7c4ca3a051a5daa5ade5b)) + + ## v2.0.6 (2023-11-07) ### Fix diff --git a/mdformat_frontmatter/__init__.py b/mdformat_frontmatter/__init__.py index dad0f10..9ce636d 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.6" +__version__ = "2.0.7" from .plugin import RENDERERS, update_mdit # noqa: F401