From a94256fa43783f5e9182f45bc607f3972b68a79d Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Sun, 23 Jun 2024 20:37:22 +0200 Subject: [PATCH] release: bump version to 1.13.3 --- CHANGELOG.md | 6 ++++++ mkdocs_rss_plugin/__about__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c11bdca..80fd5c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 1.13.3 - 2024-06-23 + +### Bugs fixes 🐛 + +* hotfix: bad default_time value type introduced in #300 by @Guts in + ## 1.13.2 - 2024-06-23 ### Features and enhancements 🎉 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 1f87afb..9da20aa 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.2" +__version__ = "1.13.3" __version_info__ = tuple( [ int(num) if num.isdigit() else num