From de7f33de01185dd02e859c39640d94b090268ffa Mon Sep 17 00:00:00 2001 From: Tushar Goel Date: Wed, 8 Jul 2026 01:47:06 +0530 Subject: [PATCH] Prepare for release v40.0.1 Signed-off-by: Tushar Goel --- CHANGELOG.rst | 8 ++++++++ setup.cfg | 2 +- vulnerablecode/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7d0a62c01..6d9b35d1e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Release notes ============= +Version v40.0.1 +--------------------- + +- Add throttling info in API docs, remove V1 and V2 API docs. +- Avoid converting None to "None" in AdvisorySeverity. +- Refine package curation workflow. + + Version v40.0.0 --------------------- diff --git a/setup.cfg b/setup.cfg index 83a4bcbae..a23abe786 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 40.0.0 +version = 40.0.1 license = Apache-2.0 AND CC-BY-SA-4.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390 diff --git a/vulnerablecode/__init__.py b/vulnerablecode/__init__.py index fa20a9631..dc6dceb75 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -14,7 +14,7 @@ import git -__version__ = "40.0.0" +__version__ = "40.0.1" PROJECT_DIR = Path(__file__).resolve().parent