Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scancodeio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down