From 362fc8c14eb88ff224d564f56d1620c276acbd1b Mon Sep 17 00:00:00 2001 From: Mikhail Burshteyn Date: Sun, 14 Mar 2021 01:59:31 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.3.0=20=E2=86=92=201.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 4 ++++ flake8_pytest_style/plugin.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) 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"