From dbb167b54bc5f3b09f6666dfea03914af90c6e4b Mon Sep 17 00:00:00 2001 From: Alex DeJarnatt Date: Thu, 26 Mar 2026 19:10:42 -0400 Subject: [PATCH 1/2] Fix README: remove stale note about system cppcheck on PATH --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 2f685d1..14a9bb5 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,7 @@ pip install pytest-cppcheck ``` This pulls in cppcheck automatically via the -[cppcheck](https://pypi.org/project/cppcheck/) PyPI package. If you prefer a -specific version, install cppcheck yourself via your system package manager -(`apt install cppcheck`, `brew install cppcheck`, etc.) — the plugin uses -whichever `cppcheck` is on PATH. +[cppcheck](https://pypi.org/project/cppcheck/) PyPI package. ## Usage From fd17067f5185a66cdfdb0bbaa977e97610b9e0aa Mon Sep 17 00:00:00 2001 From: Alex DeJarnatt Date: Thu, 26 Mar 2026 19:11:27 -0400 Subject: [PATCH 2/2] Bump version to 0.1.3 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e97da96..f4b5e85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytest-cppcheck" -version = "0.1.2" +version = "0.1.3" description = "A pytest plugin that runs cppcheck static analysis on C/C++ source files" readme = "README.md" license = {file = "LICENSE"}