diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f38a98e..791d5d9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0 +current_version = 1.4.0 commit = True tag = True diff --git a/README.md b/README.md index afed7a2..1c6eced 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,10 @@ MIT **Unreleased** +... + +**1.4.0 - 2021-03-14** + * add [PT023] (checks for parentheses consistency in `pytest.mark` usage) * add [PT024] (checks for unnecessary `pytest.mark.asyncio` on fixtures) * fix [PT004], [PT005] firing on abstract fixtures diff --git a/flake8_pytest_style/plugin.py b/flake8_pytest_style/plugin.py index 6b62e2c..927700c 100644 --- a/flake8_pytest_style/plugin.py +++ b/flake8_pytest_style/plugin.py @@ -24,7 +24,7 @@ UnittestAssertionVisitor, ) -__version__ = '1.3.0' +__version__ = '1.4.0' class PytestStylePlugin(Plugin[Config]): diff --git a/pyproject.toml b/pyproject.toml index 8cf3156..379ab2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flake8-pytest-style" -version = "1.3.0" +version = "1.4.0" description = "A flake8 plugin checking common style issues or inconsistencies with pytest-based tests." authors = ["Mikhail Burshteyn "] license = "MIT"