diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 35b606beff..e0f49ed140 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,12 +1,30 @@ Changelog ========= -v35.4.2 (unreleased) +v35.5.0 (2025-12-01) -------------------- - Add arguments support for the reset action in REST API. https://github.com/aboutcode-org/scancode.io/issues/1948 +- Add management command to analyze Kubernetes cluster. + https://github.com/aboutcode-org/scancode.io/issues/1950 + +- Improve source mapping for .py and .pyi files. + https://github.com/aboutcode-org/scancode.io/issues/1920 + +- Keep webhook subscription in project reset. + https://github.com/aboutcode-org/scancode.io/issues/1963 + +- Add --vulnerabilities and --strict options in verify-project. + https://github.com/aboutcode-org/scancode.io/issues/1964 + +- Add support for PyPI PURLs as Inputs. + https://github.com/aboutcode-org/scancode.io/issues/1966 + +- Add JFrog Artifactory and Sonatype Nexus integrations documentation. + https://github.com/aboutcode-org/scancode.io/issues/1970 + v35.4.1 (2025-10-24) -------------------- diff --git a/pyproject.toml b/pyproject.toml index 705eee1bbd..4288d47e0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "scancodeio" -version = "35.4.1" +version = "35.5.0" description = "Automate software composition analysis pipelines" readme = "README.rst" requires-python = ">=3.10,<3.14" diff --git a/scancodeio/__init__.py b/scancodeio/__init__.py index 63bb4b6399..59f38a52f3 100644 --- a/scancodeio/__init__.py +++ b/scancodeio/__init__.py @@ -28,7 +28,7 @@ import git -VERSION = "35.4.1" +VERSION = "35.5.0" PROJECT_DIR = Path(__file__).resolve().parent ROOT_DIR = PROJECT_DIR.parent