diff --git a/CHANGELOG.md b/CHANGELOG.md index 324de37..2976fd7 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.15.0 - 2024-07-03 + +### Features and enhancements 🎉 + +* feat: allow per-page description customization by @meysam81 in + +### New Contributors + +* @meysam81 made their first contribution in + ## 1.14.0 - 2024-06-25 ### Bugs fixes 🐛 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 2656123..ec40fea 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.14.0" +__version__ = "1.15.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num