From 67bdbd8b26b7b92c1025487d52406faaff8f3a28 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Mon, 24 Jul 2023 19:09:34 +0200 Subject: [PATCH] Bump to 1.8.0 --- CHANGELOG.md | 9 +++++++++ mkdocs_rss_plugin/__about__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0345d06a..1f4c780b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed --> +## 1.8.0 - 2023-07-24 + +### Bugs fixes 🐛 + +* Fix tests config by @Guts in + +### Features and enhancements 🎉 + +* Add option to enable/disable git use. by @Guts in ## 1.7.0 - 2023-05-28 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index dd52245e..7f8a602a 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.7.0" +__version__ = "1.8.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num