diff --git a/CHANGELOG.md b/CHANGELOG.md index 544c0e01..0345d06a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 1.7.0 - 2023-05-28 + +### Bugs fixes 🐛 + +* Fix tests: restore missing `__init__.py` file to make tests a subpackage by @Guts in + +### Features and enhancements 🎉 + +* Comply language codes with RSS Spec by @YDX-2147483647 in + +### Tooling 🔧 + +* Documentation: housekeeping dependencies and CI by @Guts in + +### Documentation 📖 + +* Doc: typo & tips by @YDX-2147483647 in + +### Other Changes + +* Improve: strip image URL to avoid common errors by @Guts in +* Dev tooling: extend git hooks by @Guts in + ## 1.6.0 - 2023-02-21 ### Bugs fixes 🐛 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 798c9d61..dd52245e 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.6.0" +__version__ = "1.7.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num