Skip to content

Commit 91991e3

Browse files
authored
Release 1.5.0 (#612)
1 parent a0f0c7c commit 91991e3

8 files changed

+57
-15
lines changed

CHANGES.rst

+56
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,62 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
1.5.0 (2024-10-22)
18+
==================
19+
20+
Bug fixes
21+
---------
22+
23+
- An incorrect signature of the ``__class_getitem__`` class method
24+
has been fixed, adding a missing ``class_item`` argument under
25+
Python 3.8 and older.
26+
27+
This change also improves the code coverage of this method that
28+
was previously missing -- by :user:`webknjaz`.
29+
30+
31+
*Related issues and pull requests on GitHub:*
32+
:issue:`567`, :issue:`571`.
33+
34+
35+
Improved documentation
36+
----------------------
37+
38+
- Rendered issue, PR, and commit links now lead to
39+
``frozenlist``'s repo instead of ``yarl``'s repo.
40+
41+
42+
*Related issues and pull requests on GitHub:*
43+
:issue:`573`.
44+
45+
- On the :doc:`Contributing docs <contributing/guidelines>` page,
46+
a link to the ``Towncrier philosophy`` has been fixed.
47+
48+
49+
*Related issues and pull requests on GitHub:*
50+
:issue:`574`.
51+
52+
53+
Packaging updates and notes for downstreams
54+
-------------------------------------------
55+
56+
- A name of a temporary building directory now reflects
57+
that it's related to ``frozenlist``, not ``yarl``.
58+
59+
60+
*Related issues and pull requests on GitHub:*
61+
:issue:`573`.
62+
63+
- Declared Python 3.13 supported officially in the distribution package metadata.
64+
65+
66+
*Related issues and pull requests on GitHub:*
67+
:issue:`595`.
68+
69+
70+
----
71+
72+
1773
1.4.1 (2023-12-15)
1874
==================
1975

CHANGES/567.bugfix.rst

-1
This file was deleted.

CHANGES/571.bugfix.rst

-6
This file was deleted.

CHANGES/573.doc.rst

-2
This file was deleted.

CHANGES/573.packaging.rst

-2
This file was deleted.

CHANGES/574.doc.rst

-2
This file was deleted.

CHANGES/595.packaging.rst

-1
This file was deleted.

frozenlist/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from functools import total_ordering
66
from typing import Any, Type
77

8-
__version__ = "1.4.2.dev0"
8+
__version__ = "1.5.0"
99

1010
__all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...]
1111

0 commit comments

Comments
 (0)