summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASE.md3
-rw-r--r--docs/changelog.rst5
-rw-r--r--pyproject.toml2
-rwxr-xr-xsetup.py2
4 files changed, 7 insertions, 5 deletions
diff --git a/RELEASE.md b/RELEASE.md
deleted file mode 100644
index 76e47100..00000000
--- a/RELEASE.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Release type: patch
-
-Fix incorrect parsing of parameters specified via `-e` / `--extra-settings` option flags (#2938).
diff --git a/docs/changelog.rst b/docs/changelog.rst
index b76a4575..59102506 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,11 @@
Release history
###############
+4.7.2 - 2022-02-09
+==================
+
+Fix incorrect parsing of parameters specified via `-e` / `--extra-settings` option flags (#2938).
+
4.7.1 - 2021-10-12
==================
diff --git a/pyproject.toml b/pyproject.toml
index 7a2889cc..3d226c5c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pelican"
-version = "4.7.1"
+version = "4.7.2"
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 3b538992..0b536e52 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.1"
+version = "4.7.2"
requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.7', 'pygments',
'docutils>=0.15', 'pytz >= 0a', 'blinker', 'unidecode',