Skip to content

Commit a9bb3a0

Browse files
authored
Release 6.2.0 (#1062)
1 parent f893493 commit a9bb3a0

7 files changed

Lines changed: 76 additions & 31 deletions

File tree

CHANGES.rst

Lines changed: 75 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,57 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
v6.2.0
18+
======
19+
20+
*(2025-03-16)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Fixed ``in`` checks throwing an exception instead of returning :data:`False` when testing non-strings.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`1045`.
30+
31+
- Fix a leak when the last accessed module in ``PyInit__multidict`` init is not released.
32+
33+
*Related issues and pull requests on GitHub:*
34+
:issue:`1061`.
35+
36+
37+
Features
38+
--------
39+
40+
- Implemented support for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.
41+
42+
*Related issues and pull requests on GitHub:*
43+
:issue:`1015`.
44+
45+
46+
Packaging updates and notes for downstreams
47+
-------------------------------------------
48+
49+
- Started publishing wheels made for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.
50+
51+
*Related issues and pull requests on GitHub:*
52+
:issue:`1015`.
53+
54+
55+
Miscellaneous internal changes
56+
------------------------------
57+
58+
- Used stricter typing across the code base, resulting in improved typing accuracy across multidict classes.
59+
Funded by an ``NLnet`` grant.
60+
61+
*Related issues and pull requests on GitHub:*
62+
:issue:`1046`.
63+
64+
65+
----
66+
67+
1768
6.1.0 (2024-09-09)
1869
==================
1970

@@ -27,9 +78,9 @@ Bug fixes
2778

2879
*Related issues and pull requests on GitHub:*
2980
:issue:`928`.
30-
31-
32-
81+
82+
83+
3384

3485
Features
3586
--------
@@ -39,9 +90,9 @@ Features
3990

4091
*Related issues and pull requests on GitHub:*
4192
:issue:`1002`.
42-
43-
44-
93+
94+
95+
4596

4697
Removals and backward incompatible breaking changes
4798
---------------------------------------------------
@@ -51,9 +102,9 @@ Removals and backward incompatible breaking changes
51102

52103
*Related issues and pull requests on GitHub:*
53104
:issue:`997`.
54-
55-
56-
105+
106+
107+
57108

58109
Contributor-facing changes
59110
--------------------------
@@ -65,9 +116,9 @@ Contributor-facing changes
65116

66117
*Related issues and pull requests on GitHub:*
67118
:issue:`928`.
68-
69-
70-
119+
120+
121+
71122
- `The deprecated <https://hynek.me/til/set-output-deprecation-github-actions/>`_
72123
``::set-output`` workflow command has been replaced
73124
by the ``$GITHUB_OUTPUT`` environment variable
@@ -76,9 +127,9 @@ Contributor-facing changes
76127

77128
*Related issues and pull requests on GitHub:*
78129
:issue:`940`.
79-
80-
81-
130+
131+
132+
82133
- `codecov-action <https://github.com/codecov/codecov-action>`_
83134
has been temporarily downgraded to ``v3``
84135
in the GitHub Actions CI/CD workflow definitions
@@ -90,9 +141,9 @@ Contributor-facing changes
90141

91142
*Related issues and pull requests on GitHub:*
92143
:issue:`941`.
93-
94-
95-
144+
145+
146+
96147
- In the GitHub Actions CI/CD workflow definition,
97148
the ``Get pip cache dir`` step has been fixed for
98149
Windows runners by adding ``shell: bash``.
@@ -102,19 +153,19 @@ Contributor-facing changes
102153

103154
*Related issues and pull requests on GitHub:*
104155
:issue:`942`.
105-
106-
107-
156+
157+
158+
108159
- Interpolation of the ``pip`` cache keys has been
109160
fixed by adding missing ``$`` syntax
110161
in the GitHub Actions CI/CD workflow definition.
111162

112163

113164
*Related issues and pull requests on GitHub:*
114165
:issue:`943`.
115-
116-
117-
166+
167+
168+
118169

119170
----
120171

CHANGES/1015.feature.rst

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

CHANGES/1015.packaging.rst

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

CHANGES/1045.bugfix.rst

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

CHANGES/1046.misc.rst

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

CHANGES/1061.bugfix

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
@@ -22,7 +22,7 @@
2222
"getversion",
2323
)
2424

25-
__version__ = "6.1.0"
25+
__version__ = "6.2.0"
2626

2727

2828
if TYPE_CHECKING or not USE_EXTENSIONS:

0 commit comments

Comments
 (0)