diff --git a/CHANGELOG.md b/CHANGELOG.md index ef4f3bf..f28ae2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 1.17.1 - 2024-12-16 + +### Bugs fixes 🐛 + +* fix(rss): email and name were inverted in output and so uncompliant by @Guts in . Thanks @stefansli for the floow up in . + +### Documentation 📖 + +* update(docs): move integrations page as independant menu by @Guts in + ## 1.17.0 - 2024-12-02 ### Features and enhancements 🎉 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 729a366..aa98652 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__ = "1.17.0" +__version__ = "1.17.1" __version_info__ = tuple( [ int(num) if num.isdigit() else num