Skip to content

Commit

Permalink
Prepare to release Pelican 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer committed Aug 20, 2020
1 parent e11a7de commit 4bda274
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
22 changes: 19 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Release history
###############

4.5.0 - 2020-08-20
==================

* Add namespace plugin support; list plugins via ``pelican-plugins`` command
* Override settings via ``-e`` / ``--extra-settings`` CLI option flags
* Add settings for custom Jinja globals and tests
* Customize article summary ellipsis via ``SUMMARY_END_MARKER`` setting
* Customize Typogrify dash handling via new ``TYPOGRIFY_DASHES`` setting
* Support Unicode when generating slugs
* Support Asciidoc ``.adoc`` file generation in Pelican importer
* Improve user experience when ``pelican --listen`` web server is quit
* Improve Invoke tasks template
* Include tests in source distributions
* Switch CI from Travis to GitHub Actions
* Remove support for Python 2.7

4.2.0 - 2019-10-17
==================

Expand All @@ -12,7 +28,7 @@ Release history
4.1.3 - 2019-10-09
==================

* Fix quick-start docs regarding `pelican --listen`
* Fix quick-start docs regarding ``pelican --listen``
* Set default listen address to 127.0.0.1
* Add extra/optional Markdown dependency to setup.py
* Use correct SSH port syntax for rsync in tasks.py
Expand All @@ -30,8 +46,8 @@ Fix pelican.settings.load_source to avoid caching issues - PR #2621

* Add AutoPub to auto-publish releases on PR merge
* Add CSS classes for reStructuredText figures
* Pass `argv` to Pelican `main` entrypoint
* Set default content status to a blank string rather than `None`
* Pass ``argv`` to Pelican ``main`` entrypoint
* Set default content status to a blank string rather than ``None``

4.1.0 - 2019-07-14
==================
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pelican"
version = "4.2.0"
version = "4.5.0"
description = "Static site generator supporting Markdown and reStructuredText"
authors = ["Justin Mayer <[email protected]>"]
license = "AGPLv3"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup, find_packages


version = "4.2.0"
version = "4.5.0"

requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.11', 'pygments',
'docutils>=0.15', 'pytz >= 0a', 'blinker', 'unidecode',
Expand Down

0 comments on commit 4bda274

Please sign in to comment.