diff --git a/CHANGES.rst b/CHANGES.rst index 1948a442..1b2f1896 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,62 @@ Changelog .. towncrier release notes start +1.5.0 (2024-10-22) +================== + +Bug fixes +--------- + +- An incorrect signature of the ``__class_getitem__`` class method + has been fixed, adding a missing ``class_item`` argument under + Python 3.8 and older. + + This change also improves the code coverage of this method that + was previously missing -- by :user:`webknjaz`. + + + *Related issues and pull requests on GitHub:* + :issue:`567`, :issue:`571`. + + +Improved documentation +---------------------- + +- Rendered issue, PR, and commit links now lead to + ``frozenlist``'s repo instead of ``yarl``'s repo. + + + *Related issues and pull requests on GitHub:* + :issue:`573`. + +- On the :doc:`Contributing docs ` page, + a link to the ``Towncrier philosophy`` has been fixed. + + + *Related issues and pull requests on GitHub:* + :issue:`574`. + + +Packaging updates and notes for downstreams +------------------------------------------- + +- A name of a temporary building directory now reflects + that it's related to ``frozenlist``, not ``yarl``. + + + *Related issues and pull requests on GitHub:* + :issue:`573`. + +- Declared Python 3.13 supported officially in the distribution package metadata. + + + *Related issues and pull requests on GitHub:* + :issue:`595`. + + +---- + + 1.4.1 (2023-12-15) ================== diff --git a/CHANGES/567.bugfix.rst b/CHANGES/567.bugfix.rst deleted file mode 120000 index 562c0d4c..00000000 --- a/CHANGES/567.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -571.bugfix.rst \ No newline at end of file diff --git a/CHANGES/571.bugfix.rst b/CHANGES/571.bugfix.rst deleted file mode 100644 index 067781d6..00000000 --- a/CHANGES/571.bugfix.rst +++ /dev/null @@ -1,6 +0,0 @@ -An incorrect signature of the ``__class_getitem__`` class method -has been fixed, adding a missing ``class_item`` argument under -Python 3.8 and older. - -This change also improves the code coverage of this method that -was previously missing -- by :user:`webknjaz`. diff --git a/CHANGES/573.doc.rst b/CHANGES/573.doc.rst deleted file mode 100644 index 1c1562ef..00000000 --- a/CHANGES/573.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Rendered issue, PR, and commit links now lead to -``frozenslist``'s repo instead of ``yarl``'s repo. diff --git a/CHANGES/573.packaging.rst b/CHANGES/573.packaging.rst deleted file mode 100644 index 11db1e7c..00000000 --- a/CHANGES/573.packaging.rst +++ /dev/null @@ -1,2 +0,0 @@ -A name of a temporary building directory now reflects -that it's related to ``frozenslist``, not ``yarl``. diff --git a/CHANGES/574.doc.rst b/CHANGES/574.doc.rst deleted file mode 100644 index fb750589..00000000 --- a/CHANGES/574.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -On the :doc:`Contributing docs ` page, -a link to the ``Towncrier philosophy`` has been fixed. diff --git a/CHANGES/595.packaging.rst b/CHANGES/595.packaging.rst deleted file mode 100644 index d7e2dd07..00000000 --- a/CHANGES/595.packaging.rst +++ /dev/null @@ -1 +0,0 @@ -Declared Python 3.13 supported officially in the distribution package metadata. diff --git a/frozenlist/__init__.py b/frozenlist/__init__.py index cfbe924a..4022db50 100644 --- a/frozenlist/__init__.py +++ b/frozenlist/__init__.py @@ -5,7 +5,7 @@ from functools import total_ordering from typing import Any, Type -__version__ = "1.4.2.dev0" +__version__ = "1.5.0" __all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...]