Skip to content

Commit

Permalink
Release v2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sco1 committed Aug 1, 2022
2 parents 8a9644f + 7c0c965 commit 6907145
Show file tree
Hide file tree
Showing 9 changed files with 204 additions and 196 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.9.0
current_version = 2.9.1
commit = False

[bumpversion:file:pyproject.toml]
Expand Down
30 changes: 30 additions & 0 deletions .flake8
@@ -0,0 +1,30 @@
[flake8]
max-line-length=100
docstring-convention=all
extend-ignore=
P102,B311,W503,E226,S311,
# Missing Docstrings
D100,D104,D105,D107,
# Docstring Whitespace
D203,D212,D214,D215,
# Docstring Quotes
D301,D302,
# Docstring Content
D400,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414,D416,D417,
# Type Annotations
ANN002,ANN003,ANN101,ANN102,ANN204,ANN206,
# pep8-naming
N802,N806,N815,
extend-select=
# Type Guards
TC1
exclude=
__pycache__,.cache,
venv,.venv,
build, dist,
error_codes.py,
.tox
per-file-ignores =
testing/test_*.py:TC E501 D103,
import-order-style=pycharm
application-import-names=flake8_annotations,testing
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,13 @@
# Changelog
Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (`<major>`.`<minor>`.`<patch>`)

## [v2.9.1]
### Changed
* #144 Unpin the version ceiling for `attrs`.

### Fixed
* (Internal) Fix unit tests for opinionated warning codes in `flake8 >= 5.0` (See: https://github.com/pycqa/flake8/issues/284)

## [v2.9.0]
### Added
* #135 Add `--allow-star-arg-any` to support suppression of `ANN401` for `*args` and `**kwargs`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -33,7 +33,7 @@ cog.out(
]]] -->
```bash
$ flake8 --version
4.0.1 (flake8-annotations: 2.9.0, mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes:2.4.0) CPython 3.10.2 on Darwin
5.0.2 (flake8-annotations: 2.9.1, mccabe: 0.7.0, pycodestyle: 2.9.0, pyflakes:2.5.0) CPython 3.10.5 on Darwin
```
<!-- [[[end]]] -->

Expand Down
2 changes: 1 addition & 1 deletion flake8_annotations/__init__.py
Expand Up @@ -5,4 +5,4 @@
else:
PY_GTE_38 = False

__version__ = "2.9.0"
__version__ = "2.9.1"

0 comments on commit 6907145

Please sign in to comment.