diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..7f09a1d --- /dev/null +++ b/.mailmap @@ -0,0 +1,8 @@ +Dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> <27856297+dependabot-preview[bot]@users.noreply.github.com> + +Julien M. +Julien M. + +Y.D.X. <73375426+YDX-2147483647@users.noreply.github.com> +Y.D.X. <73375426+YDX-2147483647@users.noreply.github.com> <73375426+YDX-2147483647@users.noreply.github.com> diff --git a/CHANGELOG.md b/CHANGELOG.md index 181e52c..242668d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> +## 1.13.0 - 2024-06-10 + +### Bugs fixes 🐛 + +### Features and enhancements 🎉 + +* feature: allow customize output filenames by @Guts in +* feature: allow multiple instances by @Guts in +* chore: set minimal python version to 3.10 by @Guts in +* chore(deps): set minimum Mkdocs version to 1.4 by @Guts in +* Refacto: modernize config date from meta by @Guts in + +### Tooling 🔧 + +* ci: use trusted publisher and remove token by @Guts in +* tooling: add SonarCloud config by @Guts in + +### Documentation 📖 + +* Documentation: improve guide how to make JSON feed discoverable by @Guts in +* Docs: order settings aZ and minor improvements by @Guts in +* docs: complete JSON schema with latest features by @Guts in +* docs: fix internal links by @Guts in + +---- + ## 1.12.2 - 2024-04-30 ### Bugs fixes 🐛 diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index 748039b..abd7812 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.12.2" +__version__ = "1.13.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num