From acd0f8e0b6238a6042e3a56e7d41aeef64f1b530 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Sat, 13 Jan 2024 23:29:26 +0100 Subject: [PATCH] release: bump version to 1.12.0 --- CHANGELOG.md | 20 +++++++++++++++++++- mkdocs_rss_plugin/__about__.py | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f14758c..a4e9b4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,13 +17,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 1.12.0 - 2024-01-13 + +### Features and enhancements 🎉 + +* Implement JSON Feed output by @notpushkin and @Guts in + +### Documentation 📖 + +* docs: add how to make JSON Feeds discoverable by @Guts in + +### Other Changes + +* tests: check JSON feed validity by @Guts in + +### New Contributors + +* @notpushkin made their first contribution in + ## 1.11.1 - 2024-01-11 ### Features and enhancements 🎉 * fix #229 allow date.created to get creation date by @copdips in -## New Contributors +### New Contributors * @copdips made their first contribution in diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index e66bce0..d5d8fd9 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.11.1" +__version__ = "1.12.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num