diff --git a/CHANGELOG.md b/CHANGELOG.md index 1158a358..a2b26df0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 0.20.1 - 2022-02-08 + +### Fixed + +- Error when using "enabled: false" together with "match_path" (see #104 - PR #107). Reported by @prcr, fixed by @dcode. Thanks to them! + ---- ## 0.20.0 - 2022-01-06 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 2b730ca5..66b02417 100644 --- a/mkdocs_rss_plugin/__about__.py +++ b/mkdocs_rss_plugin/__about__.py @@ -40,7 +40,7 @@ __title_clean__ = "".join(e for e in __title__ if e.isalnum()) __uri__ = "https://github.com/Guts/mkdocs-rss-plugin/" -__version__ = "0.20.0" +__version__ = "0.20.1" __version_info__ = tuple( [ int(num) if num.isdigit() else num