Skip to content

Commit dbd686f

Browse files
authored
Bump to 6.6.3 (#1230)
1 parent ac62105 commit dbd686f

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
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.6.3
18+
=====
19+
20+
*(2025-06-30)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Fixed inconsistencies generated by the C implementation of ``_md_shrink()`` which might later lead to assertion failures and crash -- by :user:`Romain-Geissler-1A`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`1229`.
30+
31+
32+
----
33+
34+
1735
6.6.2
1836
=====
1937

CHANGES/1229.bugfix.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
@@ -22,7 +22,7 @@
2222
"getversion",
2323
)
2424

25-
__version__ = "6.6.2"
25+
__version__ = "6.6.3"
2626

2727

2828
if TYPE_CHECKING or not USE_EXTENSIONS:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if sys.implementation.name != "cpython":
1111
NO_EXTENSIONS = True
1212

13-
CFLAGS = ["-O0", "-g3", "-UNDEBUG"] if DEBUG_BUILD else ["-O3"]
13+
CFLAGS = ["-O0", "-g3", "-UNDEBUG"] if DEBUG_BUILD else ["-O3", "-DNDEBUG"]
1414

1515
if platform.system() != "Windows":
1616
CFLAGS.extend(

0 commit comments

Comments
 (0)