Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Breaking changes
----------------

* Remove ``__author__``, ``__license__``, and ``__version__``
as module-level metadata attributes.
4 changes: 0 additions & 4 deletions feedparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@
)
from .util import FeedParserDict

__author__ = "Kurt McKee <contactme@kurtmckee.org>"
__license__ = "BSD 2-clause"
__version__ = "6.0.14"

# If you want feedparser to automatically resolve all relative URIs, set this
# to 1.
RESOLVE_RELATIVE_URIS = 1
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "feedparser"
version = "6.0.13"
version = "6.0.14"
description = "Parse Atom/RSS/JSON feeds in Python"
readme = "README.rst"
requires-python = ">=3.10"
Expand Down Expand Up @@ -94,6 +94,7 @@ filterwarnings = [
[tool.scriv]
version = "literal: pyproject.toml: project.version"
categories = [
"Breaking changes",
"Python support",
"Added",
"Fixed",
Expand Down
Loading