Skip to content

Commit d4b6d18

Browse files
authored
Release v2.2.1
Release v2.2.1
2 parents 63ad381 + ac7add5 commit d4b6d18

File tree

5 files changed

+74
-70
lines changed

5 files changed

+74
-70
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (`<major>`.`<minor>`.`<patch>`)
33

4+
## [v2.2.1]
5+
### Fixed
6+
* #89 Revert change to Python version pinning to prevent unnecessary locking headaches
7+
48
## [v2.2.0]
59
### Added
610
* #87 Add `--allow-untyped-defs` to suppress all errors from dynamically typed functions. A function is considered dynamically typed if it does not contain any type hints.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can verify it's being picked up by invoking the following in your shell:
2323

2424
```bash
2525
$ flake8 --version
26-
3.8.2 (flake8-annotations: 2.2.0, mccabe: 0.6.1, pycodestyle: 5.0.2, pyflakes: 2.2.0) CPython 3.8.2 on Darwin
26+
3.8.2 (flake8-annotations: 2.2.1, mccabe: 0.6.1, pycodestyle: 5.0.2, pyflakes: 2.2.0) CPython 3.8.2 on Darwin
2727
```
2828

2929
## Table of Warnings

flake8_annotations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
PY_GTE_38 = False
1919

20-
__version__ = "2.2.0"
20+
__version__ = "2.2.1"
2121

2222
AST_ARG_TYPES = ("args", "vararg", "kwonlyargs", "kwarg")
2323
if PY_GTE_38:

poetry.lock

Lines changed: 66 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)