From a72b887fc4c584eecb6ef126dc80ca2fce3d91b5 Mon Sep 17 00:00:00 2001 From: Stavros Ntentos <133706+stdedos@users.noreply.github.com> Date: Fri, 2 Feb 2024 18:40:58 +0200 Subject: [PATCH] Release v2.0.0a0 # Added * Migrate setup.py to pyproject.toml (https://github.com/pylint-dev/pylint-pytest/pull/8) * Support for Python 3.12 (https://github.com/pylint-dev/pylint-pytest/issues/3, "side effect" of https://github.com/pylint-dev/pylint-pytest/pull/8) * Introduced @dependabot (part of https://github.com/pylint-dev/pylint-pytest/pull/28) * Improved reliability of the `FixtureChecker` class (https://github.com/pylint-dev/pylint-pytest/pull/29) # Removed * Support for Python 3.6 & 3.7 (https://github.com/pylint-dev/pylint-pytest/pull/23) # Improved * Increased reproducibility of the project, by using `pip-compile` for the development dependencies (https://github.com/pylint-dev/pylint-pytest/pull/28, small bugfix in https://github.com/pylint-dev/pylint-pytest/pull/39) * Minor CI + License updates (in 29f0c33, e0e529a, 8f56d1c) Signed-off-by: Stavros Ntentos <133706+stdedos@users.noreply.github.com> --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0758c3f..1491ded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,19 @@ * Migrate setup.py to pyproject.toml (https://github.com/pylint-dev/pylint-pytest/pull/8) * Support for Python 3.12 (https://github.com/pylint-dev/pylint-pytest/issues/3, "side effect" of https://github.com/pylint-dev/pylint-pytest/pull/8) +* Introduced @dependabot (part of https://github.com/pylint-dev/pylint-pytest/pull/28) +* Improved reliability of the `FixtureChecker` class (https://github.com/pylint-dev/pylint-pytest/pull/29) ### Removed * Support for Python 3.6 & 3.7 (https://github.com/pylint-dev/pylint-pytest/pull/23) +### Improved + +* Increased reproducibility of the project, by using `pip-compile` for the development dependencies + (https://github.com/pylint-dev/pylint-pytest/pull/28, small bugfix in https://github.com/pylint-dev/pylint-pytest/pull/39) +* Minor CI + License updates (in 29f0c33, e0e529a, 8f56d1c) + ## [1.1.7] - 2023-12-04 This is a small release to support additionally Pylint v3. diff --git a/pyproject.toml b/pyproject.toml index 11c86aa..e4294ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pylint-pytest" -version = "2.0.0rc0" +version = "2.0.0a0" license = {file = "LICENSE"} description = "A Pylint plugin to suppress pytest-related false positives."