Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.10: Bump version and update Changelog #47

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
Changelog
=========

`v1.10 <https://github.com/pengutronix/flamingo/compare/v1.9...v1.10>`_ (2024-04-22)
------------------------------------------------------------------------------------

Changes
~~~~~~~

* plugins/tags: The :code:`tag` metadata can now be a real `yaml`-list instead of a list string.
* plugins/feeds: A podcast-author can be added to a feeds metadata by setting the
:code:`itunes_author` property in the feed definition.
* plugins/feeds: The HTML content of a feed-entry can be filtered by a function.
This is intended to remove items that should not be included in the feed
(e.g. the actual podcast player for podcasts)
or to only publish a preview of the post.
* Feeds: The :code:`content type` of entries is now set to :code:`HTML`.
This should reduce confusion in some feed readers.
* Feeds: Convert all URLs from relative to absolute.
Feeds should not contain relative URLs. Some feed readers and
podcast clients seem to convert relative URLs into absolute ones. Let's
not rely on that and convert relative URLs into absolute URLs for a.href
and img.src.
* BeautifulSoup: Silence :code:`MarkupResemblesLocatorWarning`.
BS4 now raises a :code:`MarkupResemblesLocatorWarning` every time a content
looks like a path or URL.
In Flamingo this is usually intended and not an user error.
So we silence this warning completely.

Bugfixes
~~~~~~~~

(none)

`v1.9 <https://github.com/pengutronix/flamingo/compare/v1.8...v1.9>`_ (2022-11-22)
------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion flamingo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

_dirname = os.path.dirname(__file__)

VERSION = (1, 9)
VERSION = (1, 10)
VERSION_STRING = '.'.join([str(i) for i in VERSION])
THEME_ROOT = os.path.join(_dirname, 'theme')
PROJECT_TEMPLATES_ROOT = os.path.join(_dirname, 'project_templates')
Expand Down