Skip to content

Commit

Permalink
Release 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Sep 9, 2024
1 parent f3876fd commit 4140e63
Show file tree
Hide file tree
Showing 10 changed files with 106 additions and 28 deletions.
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

0 comments on commit 4140e63

Please sign in to comment.