From ea70b075c3ef2e872ba41afabec6508145cd432d Mon Sep 17 00:00:00 2001 From: Carson Gee Date: Thu, 5 Oct 2023 22:05:11 -0600 Subject: [PATCH] Released 0.21.0 --- README.rst | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index c3f65bb..9d0ef65 100644 --- a/README.rst +++ b/README.rst @@ -54,6 +54,13 @@ If you want to help development, there is Releases ======== +0.21.0 +~~~~~~ +- Dropped support for pytest < 7.0 in preparation for pytest 8.0 (should work with it when it comes out) +- Dropped support for pylint < 2.15 to work better with Python 3.11 and drop backwards compatibility code +- Use baked in TOML support with fallback to newer tomli library thanks to `mgorny `__ + + 0.20.0 ~~~~~~ - Corrected issues introduced by deprecations in pylint diff --git a/setup.py b/setup.py index 9c1e40f..f966a5e 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ description="pytest plugin to check source code with pylint", long_description=LONG_DESCRIPTION, license="MIT", - version="0.20.0", + version="0.21.0", author="Carson Gee", author_email="x@carsongee.com", url="https://github.com/carsongee/pytest-pylint",