Skip to content

Commit 95d65fe

Browse files
authored
Prepare for release 23.4.1 (#365)
1 parent 64863f8 commit 95d65fe

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Change Log
22

3-
## Unreleased
3+
## 23.4.1
44

55
New error codes:
66
* Y055: Unions of the form `type[X] | type[Y]` can be simplified to `type[X | Y]`.
77
Similarly, `Union[type[X], type[Y]]` can be simplified to `type[Union[X, Y]]`.
8+
Contributed by [tomasr8](https://github.com/tomasr8).
89

910
## 23.4.0
1011

pyi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def unparse(node: ast.AST) -> str:
3939
# and mypy thinks typing_extensions is part of the stdlib.
4040
from typing_extensions import Literal, TypeAlias, TypeGuard
4141

42-
__version__ = "23.4.0"
42+
__version__ = "23.4.1"
4343

4444
LOG = logging.getLogger("flake8.pyi")
4545
FLAKE8_MAJOR_VERSION = flake8.__version_info__[0]

0 commit comments

Comments
 (0)