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
14 changes: 13 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

v36.0.0 (unreleased)
v36.0.0 (2025-12-05)
--------------------

**Breaking Change:** PostgreSQL 17 is now required (previously 13).
Expand All @@ -10,6 +10,18 @@ Docker Compose users with existing data: run `./migrate-pg13-to-17.sh` before st
the stack.
Fresh installations require no action.

- Upgrade PostgreSQL from 13 to 17 in Docker compose file
https://github.com/aboutcode-org/scancode.io/issues/1973

- Upgrade Django to latest 5.2.x version
https://github.com/aboutcode-org/scancode.io/issues/1976

- Remove the dependency on scipy
https://github.com/aboutcode-org/scancode.io/issues/1754

- Add "ort-package-list" to the formats list in run command
https://github.com/aboutcode-org/scancode.io/issues/1982

v35.5.0 (2025-12-01)
--------------------

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-dev"
version = "36.0.0"
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-dev"
VERSION = "36.0.0"

PROJECT_DIR = Path(__file__).resolve().parent
ROOT_DIR = PROJECT_DIR.parent
Expand Down