Skip to content

Commit

Permalink
Release 1.5.0 (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Oct 23, 2024
1 parent a0f0c7c commit 91991e3
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 15 deletions.
56 changes: 56 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <contributing/guidelines>` 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)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/567.bugfix.rst

This file was deleted.

6 changes: 0 additions & 6 deletions CHANGES/571.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/573.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/573.packaging.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/574.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/595.packaging.rst

This file was deleted.

2 changes: 1 addition & 1 deletion frozenlist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, ...]

Expand Down

0 comments on commit 91991e3

Please sign in to comment.