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 9439717c..00000000
--- a/RELEASE.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Release type: patch
-
-Replace plugin definitions in settings with string representations after registering, so they can be cached correctly (#2828).
diff --git a/docs/changelog.rst b/docs/changelog.rst
index dfcd4c48..c302d837 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,11 @@
Release history
###############
+4.5.4 - 2021-01-04
+==================
+
+Replace plugin definitions in settings with string representations after registering, so they can be cached correctly (#2828).
+
4.5.3 - 2020-12-01
==================
diff --git a/pyproject.toml b/pyproject.toml
index 18bc2f09..c41f8787 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pelican"
-version = "4.5.3"
+version = "4.5.4"
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 ca1fc674..b4e769c0 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.5.3"
+version = "4.5.4"
requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.11', 'pygments',
'docutils>=0.15', 'pytz >= 0a', 'blinker', 'unidecode',