From 2d351f8b57bfc7e9ef1b9854be70304c705efd4b Mon Sep 17 00:00:00 2001 From: Mikhail Burshteyn Date: Mon, 1 Apr 2024 21:09:22 +0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.7.2=20=E2=86=92=202.0.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 df1828e..6129a9e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.2 +current_version = 2.0.0 commit = True tag = True diff --git a/README.md b/README.md index 71ab33e..a96d307 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,10 @@ MIT **Unreleased** +... + +**2.0.0 - 2024-04-01** + * **BREAKING:** invert default values for `pytest-fixture-no-parentheses` and `pytest-mark-no-parentheses` to conform with `pytest` official style * If you get a lot of [PT001] or [PT023] violations after upgrading, consider setting explicit values diff --git a/flake8_pytest_style/plugin.py b/flake8_pytest_style/plugin.py index 9f88eb1..4b9db50 100644 --- a/flake8_pytest_style/plugin.py +++ b/flake8_pytest_style/plugin.py @@ -24,7 +24,7 @@ UnittestAssertionVisitor, ) -__version__ = '1.7.2' +__version__ = '2.0.0' class PytestStylePlugin(Plugin[Config]): diff --git a/pyproject.toml b/pyproject.toml index 2edbf13..5788948 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flake8-pytest-style" -version = "1.7.2" +version = "2.0.0" description = "A flake8 plugin checking common style issues or inconsistencies with pytest-based tests." authors = ["Mikhail Burshteyn "] license = "MIT"