From b9e340fa799e050b48b0e4be18bb78ee21e17211 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Tue, 19 Dec 2023 19:11:30 +0100 Subject: [PATCH] release: bump version to 1.11.0 --- CHANGELOG.md | 15 +++++++++++++++ mkdocs_rss_plugin/__about__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75b5ac0..1e78c6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 1.11.0 - 2023-12-19 + +### Features and enhancements 🎉 + +* improvement: if social card not found, try to retrieve length from remote URL by @Guts in + +### Tooling 🔧 + +* ci: add a link between release and discussion by @Guts in +* docs: explicitly enable plugins with env vars by @Guts in + +### Documentation 📖 + +* docs: add API autodocumentation with mkdocstrings by @Guts in + ## 1.10.0 - 2023-12-17 ### Features and enhancements 🎉 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 41b8d6f..0f6d3a1 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.10.0" +__version__ = "1.11.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num