Skip to content

Commit 2f4e42f

Browse files
committed
Update CHANGES + move to version 24.8.19 to release
1 parent c50e9dc commit 2f4e42f

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

README.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -357,11 +357,18 @@ MIT
357357
Change Log
358358
----------
359359

360-
FUTURE
361-
~~~~~~
360+
24.8.19
361+
~~~~~~~
362362

363-
* Add B039, ``ContextVar`` with mutable literal or function call as default.
364-
* Add B040: Exception with added note not reraised. (#474)
363+
* B910: implement to suggest using Counter() instead of defaultdict(int) (#489)
364+
* B901: Do not trigger with explicit Generator return type (#481)
365+
* B008: add some comments, rename b008_extend_immutable_calls (#476)
366+
* B040: exception with note added not reraised or used (#477)
367+
* B039, Add ``ContextVar`` with mutable literal or function call as default
368+
* B040: Add Exception with added note not reraised. (#474)
369+
* Run tests in Python 3.13
370+
* Type annotated code (#481 + #483)
371+
* Replace hash with unsafe_hash (#486)
365372

366373
24.4.26
367374
~~~~~~~

bugbear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import attr
1818
import pycodestyle # type: ignore[import-untyped]
1919

20-
__version__ = "24.4.26"
20+
__version__ = "24.8.19"
2121

2222
LOG = logging.getLogger("flake8.bugbear")
2323
CONTEXTFUL_NODES = (

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Programming Language :: Python :: 3 :: Only",
3536
"Topic :: Software Development :: Libraries :: Python Modules",
3637
"Topic :: Software Development :: Quality Assurance",

0 commit comments

Comments
 (0)