diff --git a/CHANGELOG.md b/CHANGELOG.md index 597ab8c..324de37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed --> + +## 1.14.0 - 2024-06-25 + +### Bugs fixes 🐛 + +* Update docs for `as_update` (boolean not supported anymore) by @brapoprod in +* improve(remote_images): handle connection error by @Guts in +* act depending on the used Mkdocs command and disable remote images length fetching to avoid HTTP errors by @Guts in + +### Features and enhancements 🎉 + +* Feature: add http caching mechanism by @Guts in +* improve(http): disable warnings for unverified requests by @Guts in + +## New Contributors + +* @brapoprod made their first contribution in + ## 1.13.4 - 2024-06-24 ### Bugs fixes 🐛 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 8117144..2656123 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.13.4" +__version__ = "1.14.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num