From 136408e9352ca91c5014b06d19f38482671d83f4 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Wed, 10 Jan 2024 16:52:25 +1100 Subject: [PATCH] Update versions --- CHANGELOG.md | 8 ++++++++ perflint/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3f6110..3fa2324 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changes +## 0.8.0 (10th January 2024) + +* fix: pre-commit configuration filename by @adamantike in https://github.com/tonybaloney/perflint/pull/32 +* Test other versions of Python in CI by @tonybaloney in https://github.com/tonybaloney/perflint/pull/33 +* Migrate to pylint v3 by @jenstroeger in https://github.com/tonybaloney/perflint/pull/46 +* Drop support for Python 3.7 +* Add support for Python 3.12 + ## 0.7.3 (16th May 2022) * Fixes a regression bug in the loop invariant name diff --git a/perflint/__init__.py b/perflint/__init__.py index 106f0c5..b08c05d 100644 --- a/perflint/__init__.py +++ b/perflint/__init__.py @@ -8,7 +8,7 @@ if TYPE_CHECKING: from pylint.lint import PyLinter -__version__ = "0.7.3" +__version__ = "0.8.0" def register(linter: "PyLinter") -> None: