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 6.1.0 #1003

Merged
merged 1 commit into from
Sep 9, 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
105 changes: 105 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,111 @@ Changelog

.. towncrier release notes start

6.1.0 (2024-09-09)
==================

Bug fixes
---------

- Covered the unreachable code path in
``multidict._multidict_base._abc_itemsview_register()``
with typing -- by :user:`skinnyBat`.


*Related issues and pull requests on GitHub:*
:issue:`928`.




Features
--------

- Added support for Python 3.13 -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`1002`.




Removals and backward incompatible breaking changes
---------------------------------------------------

- Removed Python 3.7 support -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`997`.




Contributor-facing changes
--------------------------

- Added tests to have full code coverage of the
``multidict._multidict_base._viewbaseset_richcmp()`` function
-- by :user:`skinnyBat`.


*Related issues and pull requests on GitHub:*
:issue:`928`.



- `The deprecated <https://hynek.me/til/set-output-deprecation-github-actions/>`_
``::set-output`` workflow command has been replaced
by the ``$GITHUB_OUTPUT`` environment variable
in the GitHub Actions CI/CD workflow definition.


*Related issues and pull requests on GitHub:*
:issue:`940`.



- `codecov-action <https://github.com/codecov/codecov-action>`_
has been temporarily downgraded to ``v3``
in the GitHub Actions CI/CD workflow definitions
in order to fix uploading coverage to
`Codecov <https://app.codecov.io/gh/aio-libs/multidict>`_.
See `this issue <https://github.com/codecov/codecov-action/issues/1252>`_
for more details.


*Related issues and pull requests on GitHub:*
:issue:`941`.



- In the GitHub Actions CI/CD workflow definition,
the ``Get pip cache dir`` step has been fixed for
Windows runners by adding ``shell: bash``.
See `actions/runner#2224 <https://github.com/actions/runner/issues/2224>`_
for more details.


*Related issues and pull requests on GitHub:*
:issue:`942`.



- Interpolation of the ``pip`` cache keys has been
fixed by adding missing ``$`` syntax
in the GitHub Actions CI/CD workflow definition.


*Related issues and pull requests on GitHub:*
:issue:`943`.




----


6.0.5 (2024-02-01)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1002.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/928.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/928.contrib.rst

This file was deleted.

4 changes: 0 additions & 4 deletions CHANGES/940.contrib.rst

This file was deleted.

7 changes: 0 additions & 7 deletions CHANGES/941.contrib.rst

This file was deleted.

5 changes: 0 additions & 5 deletions CHANGES/942.contrib.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/943.contrib.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/997.breaking.rst

This file was deleted.

2 changes: 1 addition & 1 deletion multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"getversion",
)

__version__ = "6.0.6.dev0"
__version__ = "6.1.0"


try:
Expand Down
Loading