Skip to content

Commit 4140e63

Browse files
committed
Release 6.1.0
1 parent f3876fd commit 4140e63

File tree

10 files changed

+106
-28
lines changed

10 files changed

+106
-28
lines changed

CHANGES.rst

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,111 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
6.1.0 (2024-09-09)
18+
==================
19+
20+
Bug fixes
21+
---------
22+
23+
- Covered the unreachable code path in
24+
``multidict._multidict_base._abc_itemsview_register()``
25+
with typing -- by :user:`skinnyBat`.
26+
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`928`.
30+
31+
32+
33+
34+
Features
35+
--------
36+
37+
- Added support for Python 3.13 -- by :user:`bdraco`.
38+
39+
40+
*Related issues and pull requests on GitHub:*
41+
:issue:`1002`.
42+
43+
44+
45+
46+
Removals and backward incompatible breaking changes
47+
---------------------------------------------------
48+
49+
- Removed Python 3.7 support -- by :user:`bdraco`.
50+
51+
52+
*Related issues and pull requests on GitHub:*
53+
:issue:`997`.
54+
55+
56+
57+
58+
Contributor-facing changes
59+
--------------------------
60+
61+
- Added tests to have full code coverage of the
62+
``multidict._multidict_base._viewbaseset_richcmp()`` function
63+
-- by :user:`skinnyBat`.
64+
65+
66+
*Related issues and pull requests on GitHub:*
67+
:issue:`928`.
68+
69+
70+
71+
- `The deprecated <https://hynek.me/til/set-output-deprecation-github-actions/>`_
72+
``::set-output`` workflow command has been replaced
73+
by the ``$GITHUB_OUTPUT`` environment variable
74+
in the GitHub Actions CI/CD workflow definition.
75+
76+
77+
*Related issues and pull requests on GitHub:*
78+
:issue:`940`.
79+
80+
81+
82+
- `codecov-action <https://github.com/codecov/codecov-action>`_
83+
has been temporarily downgraded to ``v3``
84+
in the GitHub Actions CI/CD workflow definitions
85+
in order to fix uploading coverage to
86+
`Codecov <https://app.codecov.io/gh/aio-libs/multidict>`_.
87+
See `this issue <https://github.com/codecov/codecov-action/issues/1252>`_
88+
for more details.
89+
90+
91+
*Related issues and pull requests on GitHub:*
92+
:issue:`941`.
93+
94+
95+
96+
- In the GitHub Actions CI/CD workflow definition,
97+
the ``Get pip cache dir`` step has been fixed for
98+
Windows runners by adding ``shell: bash``.
99+
See `actions/runner#2224 <https://github.com/actions/runner/issues/2224>`_
100+
for more details.
101+
102+
103+
*Related issues and pull requests on GitHub:*
104+
:issue:`942`.
105+
106+
107+
108+
- Interpolation of the ``pip`` cache keys has been
109+
fixed by adding missing ``$`` syntax
110+
in the GitHub Actions CI/CD workflow definition.
111+
112+
113+
*Related issues and pull requests on GitHub:*
114+
:issue:`943`.
115+
116+
117+
118+
119+
----
120+
121+
17122
6.0.5 (2024-02-01)
18123
==================
19124

CHANGES/1002.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/928.bugfix.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGES/928.contrib.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGES/940.contrib.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGES/941.contrib.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGES/942.contrib.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGES/943.contrib.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGES/997.breaking.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"getversion",
2121
)
2222

23-
__version__ = "6.0.6.dev0"
23+
__version__ = "6.1.0"
2424

2525

2626
try:

0 commit comments

Comments
 (0)