summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbotpub <botpub@autopub.rocks>2021-10-12 14:45:30 +0000
committerbotpub <botpub@autopub.rocks>2021-10-12 14:45:30 +0000
commitbb10d286a6ac2f283d332f7e80c5655b9997f827 (patch)
treeefa48b14c161d32b9f227cf34558ac3cc85fa724
parentde2e9b7e4115034a0dedfb9d308850c8c5277db7 (diff)
downloadpelican-bb10d286a6ac2f283d332f7e80c5655b9997f827.tar.gz
Release Pelican 4.7.14.7.1
-rw-r--r--RELEASE.md8
-rw-r--r--docs/changelog.rst10
-rw-r--r--pyproject.toml2
-rwxr-xr-xsetup.py2
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"
diff --git a/setup.py b/setup.py
index f1ca9dc1..3b538992 100755
--- a/setup.py
+++ b/setup.py
@@ -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',