From d87c20187246e3e5de2af7e4e19073d14e80e1d0 Mon Sep 17 00:00:00 2001 From: tdruez Date: Wed, 11 Mar 2026 18:04:32 +1300 Subject: [PATCH] chore: bump version to v37.0.0 for release Signed-off-by: tdruez --- CHANGELOG.rst | 26 ++++++++++++++++++++------ pyproject.toml | 2 +- scancodeio/__init__.py | 2 +- 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0966a61a34..6a779ef3db 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,18 +1,32 @@ Changelog ========= -**v36 Breaking Change:** PostgreSQL 17 is now required (previously 13). +**v37 Breaking Changes:** -Docker Compose users with existing data: run `./migrate-pg13-to-17.sh` before starting -the stack. -Fresh installations require no action. +- Drop support for Python3.10 and Python3.11 -v37.0.0 (unreleased) +v37.0.0 (2026-03-11) -------------------- - Upgrade Django to release 6.x -- Drop support for Python3.10 and Python3.11 +- Remove the chown service in compose file + https://github.com/aboutcode-org/scancode.io/issues/2086 + +- Replace plain-text DRF token with PBKDF2-hashed API token + https://github.com/aboutcode-org/scancode.io/issues/2087 + +- Rename "Grammar" optional step group to "Antlr" in d2d pipeline + https://github.com/aboutcode-org/scancode.io/issues/2059 + +- Fix URL-encode programming language filter values in resource list + https://github.com/aboutcode-org/scancode.io/issues/2079 + +**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.1.0 (2026-01-22) -------------------- diff --git a/pyproject.toml b/pyproject.toml index 63f69d3857..5e467d21cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "scancodeio" -version = "36.1.0" +version = "37.0.0" description = "Automate software composition analysis pipelines" readme = "README.rst" requires-python = ">=3.12,<3.15" diff --git a/scancodeio/__init__.py b/scancodeio/__init__.py index a2272e7bb6..1093a8a8a6 100644 --- a/scancodeio/__init__.py +++ b/scancodeio/__init__.py @@ -28,7 +28,7 @@ import git -VERSION = "36.1.0" +VERSION = "37.0.0" PROJECT_DIR = Path(__file__).resolve().parent ROOT_DIR = PROJECT_DIR.parent