Skip to content

Commit 5e2e136

Browse files
committed
Release v2.7.0
1 parent d81389a commit 5e2e136

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.6.2
2+
current_version = 2.7.0
33
commit = False
44

55
[bumpversion:file:pyproject.toml]

CHANGELOG.md

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

4+
## [v2.7.0]
5+
### Added
6+
* #122 Add support for Flake8 v4.x
7+
### Fixed
8+
* #117 Stop including `CHANGELOG.md` when building wheels.
9+
410
## [v2.6.2]
511
### Fixed
612
* #107, #108 Change incorrect column index yielded for return annotation errors.

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.9.0 (flake8-annotations: 2.6.2, mccabe: 0.6.1, pycodestyle: 2.7.0, pyflakes: 2.3.0) CPython 3.9.1 on Darwin
26+
4.0.0 (flake8-annotations: 2.7.0, mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 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.6.2"
20+
__version__ = "2.7.0"
2121

2222
# The order of AST_ARG_TYPES must match Python's grammar
2323
# See: https://docs.python.org/3/library/ast.html#abstract-grammar

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "flake8-annotations"
3-
version = "2.6.2"
3+
version = "2.7.0"
44
description = "Flake8 Type Annotation Checks"
55
license = "MIT"
66
readme = "README.md"

0 commit comments

Comments
 (0)