diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fc6123aaa4..1caba618d3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,15 +1,30 @@ Changelog ========= -v36.0.0 (2025-12-05) --------------------- - -**Breaking Change:** PostgreSQL 17 is now required (previously 13). +**v36 Breaking Change:** PostgreSQL 17 is now required (previously 13). Docker Compose users with existing data: run `./migrate-pg13-to-17.sh` before starting the stack. Fresh installations require no action. +v36.0.1 (2025-12-09) +-------------------- + +- Add support for authors in ORT package list generation. + https://github.com/aboutcode-org/scancode.io/issues/1988 + +- Add authors field to the CycloneDX output. + https://github.com/aboutcode-org/scancode.io/issues/1990 + +- Store non-supported fields in the comment SPDX field. + https://github.com/aboutcode-org/scancode.io/issues/1989 + +- Add support for CycloneDX spec v1.7. + https://github.com/aboutcode-org/scancode.io/issues/1975 + +v36.0.0 (2025-12-05) +-------------------- + - Upgrade PostgreSQL from 13 to 17 in Docker compose file https://github.com/aboutcode-org/scancode.io/issues/1973 diff --git a/pyproject.toml b/pyproject.toml index 84361de377..d85592e94a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "scancodeio" -version = "36.0.0" +version = "36.0.1" 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 e2f23fe4bc..621add5c6d 100644 --- a/scancodeio/__init__.py +++ b/scancodeio/__init__.py @@ -28,7 +28,7 @@ import git -VERSION = "36.0.0" +VERSION = "36.0.1" PROJECT_DIR = Path(__file__).resolve().parent ROOT_DIR = PROJECT_DIR.parent