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"