Skip to content

Commit 2822aae

Browse files
authored
Release 6.7.0 (#1251)
1 parent d40ee55 commit 2822aae

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
6.7.0
18+
=====
19+
20+
*(2025-10-05)*
21+
22+
23+
Contributor-facing changes
24+
--------------------------
25+
26+
- Updated tests and added CI for CPython 3.14 -- by :user:`kumaraditya303`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`1235`.
30+
31+
32+
----
33+
34+
1735
6.6.4
1836
=====
1937

CHANGES/1235.contrib.rst

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

multidict/__init__.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"""Multidict implementation.
1+
"""
2+
Multidict implementation.
23
34
HTTP Headers and URL query string require specific data structure:
45
multidict. It behaves mostly like a dict but it can have
@@ -11,18 +12,18 @@
1112
from ._compat import USE_EXTENSIONS
1213

1314
__all__ = (
14-
"MultiMapping",
15-
"MutableMultiMapping",
16-
"MultiDictProxy",
15+
"CIMultiDict",
1716
"CIMultiDictProxy",
1817
"MultiDict",
19-
"CIMultiDict",
20-
"upstr",
21-
"istr",
18+
"MultiDictProxy",
19+
"MultiMapping",
20+
"MutableMultiMapping",
2221
"getversion",
22+
"istr",
23+
"upstr",
2324
)
2425

25-
__version__ = "6.6.4"
26+
__version__ = "6.7.0"
2627

2728

2829
if TYPE_CHECKING or not USE_EXTENSIONS:

0 commit comments

Comments
 (0)