diff --git a/CHANGELOG.md b/CHANGELOG.md index 857e142..049daa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ CHANGELOG ========= +1.2.0 - 2024-11-05 +------------------ + +- Allow changefreq and priority to be set by page/article metadata ([#30](https://github.com/pelican-plugins/sitemap/pull/30) by [dgaylo](https://github.com/dgaylo)) +- Fix error message for invalid changefreq value ([#31](https://github.com/pelican-plugins/sitemap/pull/31) by [dgaylo](https://github.com/dgaylo)) +- Fix error in tests ([#37](https://github.com/pelican-plugins/sitemap/pull/37) by [projectgus](https://github.com/projectgus)) +- Support Python 3.9 – 3.13 ([#38](https://github.com/pelican-plugins/sitemap/pull/38) by [justinmayer](https://github.com/justinmayer)) +- Pin Blinker temporarily to 1.7 until upstream fix is released ([#35](https://github.com/pelican-plugins/sitemap/issues/35) by [justinmayer](https://github.com/justinmayer)) + 1.1.0 - 2023-07-24 ------------------ diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 750447e..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,7 +0,0 @@ -Release type: minor - -- Allow changefreq and priority to be set by page/article metadata ([#30](https://github.com/pelican-plugins/sitemap/pull/30) by [dgaylo](https://github.com/dgaylo)) -- Fix error message for invalid changefreq value ([#31](https://github.com/pelican-plugins/sitemap/pull/31) by [dgaylo](https://github.com/dgaylo)) -- Fix error in tests ([#37](https://github.com/pelican-plugins/sitemap/pull/37) by [projectgus](https://github.com/projectgus)) -- Support Python 3.9 – 3.13 ([#38](https://github.com/pelican-plugins/sitemap/pull/38) by [justinmayer](https://github.com/justinmayer)) -- Pin Blinker temporarily to 1.7 until upstream fix is released ([#35](https://github.com/pelican-plugins/sitemap/issues/35) by [justinmayer](https://github.com/justinmayer)) diff --git a/pyproject.toml b/pyproject.toml index 948b61a..f9cb98e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pelican-sitemap" -version = "1.1.0" +version = "1.2.0" description = "Pelican plugin to generate sitemap in plain-text or XML format" authors = [{name = "Pelican Dev Team", email = "authors@getpelican.com"}] license = {text = "AGPL-3.0"}