Skip to content

Commit 503d2df

Browse files
authored
Prepare for release 23.1.0 (#328)
Closes #308
1 parent 2125e64 commit 503d2df

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Change Log
22

3-
## Unreleased
3+
## 23.1.0
44

55
Bugfixes:
66
* Do not emit Y020 (quoted annotations) for strings in parameter defaults.
77
* Fix checking of defaults for functions with positional-only parameters.
88

99
Other changes:
10-
* Hatchling is now used as the build backend. This should have minimal, if any,
11-
user-facing impact.
1210
* Modify Y036 so that `_typeshed.Unused` is allowed as an annotation for
1311
parameters in `__(a)exit__` methods. Contributed by
1412
[Avasam](https://github.com/Avasam)
@@ -25,6 +23,8 @@ Other changes:
2523
* Y011, Y014 and Y015 have all been significantly relaxed. `None`, `bool`s,
2624
`int`s, `float`s, `complex` numbers, strings and `bytes` are all now allowed
2725
as default values for parameter annotations or assignments.
26+
* Hatchling is now used as the build backend. This should have minimal, if any,
27+
user-facing impact.
2828

2929
## 22.11.0
3030

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__ = "22.11.0"
42+
__version__ = "23.1.0"
4343

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

0 commit comments

Comments
 (0)