From 6e300e2d48af37e8923f5a20ece8fd5b806058c7 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Thu, 7 Dec 2023 16:45:17 +0100 Subject: [PATCH] release: bump version to 1.9.0 Co-authored-by: Alexander Voss --- CHANGELOG.md | 18 ++++++++++++++++++ mkdocs_rss_plugin/__about__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f4c780b..d799d89d 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.9.0 - 2023-12-07 + +### Bugs fixes 🐛 + +* fix: deprecation of Theme._vars by using config attributes by @Guts in thanks to the excellent work of @alexvoss on and + +### Features and enhancements 🎉 + +* Road to Mkdocs >= 1.4: plugin's configuration by @Guts in +* Road to Mkdocs 1.4: use config attributes by @Guts in +* Project: split dev and test dependencies by @Guts in +* refacto: move global variables to constants module and rename customtypes into models by @Guts in + +### Tooling 🔧 + +* packaging: add Python 3.12 as supported version by @Guts in + ## 1.8.0 - 2023-07-24 ### Bugs fixes 🐛 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 7f8a602a..b1f4e839 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.8.0" +__version__ = "1.9.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num