From bb10d286a6ac2f283d332f7e80c5655b9997f827 Mon Sep 17 00:00:00 2001 From: botpub Date: Tue, 12 Oct 2021 14:45:30 +0000 Subject: [PATCH] Release Pelican 4.7.1 --- RELEASE.md | 8 -------- docs/changelog.rst | 10 ++++++++++ pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index cabb391e2..000000000 --- a/RELEASE.md +++ /dev/null @@ -1,8 +0,0 @@ -Release type: patch - -* Extend rich logging to server component `(#2927) `_ -* Fix an issue where metadata flagged to be discarded was being cached `(#2926) `_ -* Adjust suffix in server to allow redirection when needed `(#2931) `_ -* Add MIME types for web fonts `(#2929) `_ -* Distribute sample data used to run tests `(#2935) `_ -* Add Python 3.10 to test matrix diff --git a/docs/changelog.rst b/docs/changelog.rst index b7418ca9c..b76a45753 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,16 @@ Release history ############### +4.7.1 - 2021-10-12 +================== + +* Extend rich logging to server component `(#2927) `_ +* Fix an issue where metadata flagged to be discarded was being cached `(#2926) `_ +* Adjust suffix in server to allow redirection when needed `(#2931) `_ +* Add MIME types for web fonts `(#2929) `_ +* Distribute sample data used to run tests `(#2935) `_ +* Add Python 3.10 to test matrix + 4.7.0 - 2021-10-01 ================== diff --git a/pyproject.toml b/pyproject.toml index 42bd9a149..8d7749b08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pelican" -version = "4.7.0" +version = "4.7.1" description = "Static site generator supporting Markdown and reStructuredText" authors = ["Justin Mayer "] license = "AGPLv3" diff --git a/setup.py b/setup.py index f1ca9dc1a..3b538992f 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup -version = "4.7.0" +version = "4.7.1" requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.7', 'pygments', 'docutils>=0.15', 'pytz >= 0a', 'blinker', 'unidecode',