Skip to content

Commit

Permalink
Update CHANGES + move to version 24.8.19 to release
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed Aug 20, 2024
1 parent c50e9dc commit 2f4e42f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
15 changes: 11 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion bugbear.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 2f4e42f

Please sign in to comment.