diff --git a/README.rst b/README.rst index b83fa29..166207f 100644 --- a/README.rst +++ b/README.rst @@ -357,11 +357,18 @@ MIT Change Log ---------- -FUTURE -~~~~~~ +24.8.19 +~~~~~~~ -* Add B039, ``ContextVar`` with mutable literal or function call as default. -* Add B040: Exception with added note not reraised. (#474) +* B910: implement to suggest using Counter() instead of defaultdict(int) (#489) +* B901: Do not trigger with explicit Generator return type (#481) +* B008: add some comments, rename b008_extend_immutable_calls (#476) +* B040: exception with note added not reraised or used (#477) +* B039, Add ``ContextVar`` with mutable literal or function call as default +* B040: Add Exception with added note not reraised. (#474) +* Run tests in Python 3.13 +* Type annotated code (#481 + #483) +* Replace hash with unsafe_hash (#486) 24.4.26 ~~~~~~~ diff --git a/bugbear.py b/bugbear.py index be709f0..2519a24 100644 --- a/bugbear.py +++ b/bugbear.py @@ -17,7 +17,7 @@ import attr import pycodestyle # type: ignore[import-untyped] -__version__ = "24.4.26" +__version__ = "24.8.19" LOG = logging.getLogger("flake8.bugbear") CONTEXTFUL_NODES = ( diff --git a/pyproject.toml b/pyproject.toml index 58913e7..5925897 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance",