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

Release 1.5.0 #612

Merged
merged 1 commit into from
Oct 23, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading