From 06d4eff4a52bf75c5fc447aa779b1694f44028c9 Mon Sep 17 00:00:00 2001 From: botpub Date: Mon, 2 Nov 2020 13:15:26 +0000 Subject: [PATCH] Release Pelican 4.5.1 --- RELEASE.md | 5 ----- docs/changelog.rst | 7 +++++++ pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) delete mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 0f25e64e..00000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: patch - -* Refactor intra-site link discovery in order to match more permissively [#2646](https://github.com/getpelican/pelican/issues/2646) -* Fix plugins running twice in auto-reload mode [#2817](https://github.com/getpelican/pelican/issues/2817) -* Add notice to use `from pelican import signals` instead of `import pelican.signals` [#2805](https://github.com/getpelican/pelican/issues/2805) diff --git a/docs/changelog.rst b/docs/changelog.rst index 8287f8d6..e2900c48 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ Release history ############### +4.5.1 - 2020-11-02 +================== + +* Refactor intra-site link discovery in order to match more permissively [#2646](https://github.com/getpelican/pelican/issues/2646) +* Fix plugins running twice in auto-reload mode [#2817](https://github.com/getpelican/pelican/issues/2817) +* Add notice to use `from pelican import signals` instead of `import pelican.signals` [#2805](https://github.com/getpelican/pelican/issues/2805) + 4.5.0 - 2020-08-20 ================== diff --git a/pyproject.toml b/pyproject.toml index cbe7642e..4331fce1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pelican" -version = "4.5.0" +version = "4.5.1" description = "Static site generator supporting Markdown and reStructuredText" authors = ["Justin Mayer "] license = "AGPLv3" diff --git a/setup.py b/setup.py index 00aff78b..fc4ec3ce 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.0" +version = "4.5.1" requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.11', 'pygments', 'docutils>=0.15', 'pytz >= 0a', 'blinker', 'unidecode',