diff options
author | botpub <botpub@autopub.rocks> | 2021-10-12 14:45:30 +0000 |
---|---|---|
committer | botpub <botpub@autopub.rocks> | 2021-10-12 14:45:30 +0000 |
commit | bb10d286a6ac2f283d332f7e80c5655b9997f827 (patch) | |
tree | efa48b14c161d32b9f227cf34558ac3cc85fa724 | |
parent | de2e9b7e4115034a0dedfb9d308850c8c5277db7 (diff) | |
download | pelican-bb10d286a6ac2f283d332f7e80c5655b9997f827.tar.gz |
Release Pelican 4.7.14.7.1
-rw-r--r-- | RELEASE.md | 8 | ||||
-rw-r--r-- | docs/changelog.rst | 10 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
4 files changed, 12 insertions, 10 deletions
diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index cabb391e..00000000 --- a/RELEASE.md +++ /dev/null @@ -1,8 +0,0 @@ -Release type: patch - -* Extend rich logging to server component `(#2927) <https://github.com/getpelican/pelican/pull/2927>`_ -* Fix an issue where metadata flagged to be discarded was being cached `(#2926) <https://github.com/getpelican/pelican/pull/2926>`_ -* Adjust suffix in server to allow redirection when needed `(#2931) <https://github.com/getpelican/pelican/pull/2931>`_ -* Add MIME types for web fonts `(#2929) <https://github.com/getpelican/pelican/pull/2929>`_ -* Distribute sample data used to run tests `(#2935) <https://github.com/getpelican/pelican/pull/2935>`_ -* Add Python 3.10 to test matrix diff --git a/docs/changelog.rst b/docs/changelog.rst index b7418ca9..b76a4575 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) <https://github.com/getpelican/pelican/pull/2927>`_ +* Fix an issue where metadata flagged to be discarded was being cached `(#2926) <https://github.com/getpelican/pelican/pull/2926>`_ +* Adjust suffix in server to allow redirection when needed `(#2931) <https://github.com/getpelican/pelican/pull/2931>`_ +* Add MIME types for web fonts `(#2929) <https://github.com/getpelican/pelican/pull/2929>`_ +* Distribute sample data used to run tests `(#2935) <https://github.com/getpelican/pelican/pull/2935>`_ +* Add Python 3.10 to test matrix + 4.7.0 - 2021-10-01 ================== diff --git a/pyproject.toml b/pyproject.toml index 42bd9a14..8d7749b0 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 <entrop@gmail.com>"] license = "AGPLv3" @@ -6,7 +6,7 @@ from os.path import join, relpath 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', |