Skip to content

Commit b46082b

Browse files
authored
chore: bump version to v37.1.0 for release (#2140)
Signed-off-by: tdruez <tdruez@aboutcode.org>
1 parent 52b248e commit b46082b

5 files changed

Lines changed: 37 additions & 4 deletions

File tree

CHANGELOG.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@ Changelog
55

66
- Drop support for Python3.10 and Python3.11
77

8+
v37.1.0 (2026-04-01)
9+
--------------------
10+
11+
- feat: display scio and toolkit versions in place of django version
12+
https://github.com/aboutcode-org/scancode.io/pull/2101
13+
14+
- feat: display layers information (created_by, comment) in tree view
15+
https://github.com/aboutcode-org/scancode.io/pull/2102
16+
17+
- feat: enhance the global HTML structure
18+
https://github.com/aboutcode-org/scancode.io/pull/2103
19+
20+
- feat: remove the need for context processor and improve base template
21+
https://github.com/aboutcode-org/scancode.io/pull/2106
22+
23+
- fix: XSS and duplicate file detection in file upload UI
24+
https://github.com/aboutcode-org/scancode.io/pull/2129
25+
26+
- fix: incomplete URL sanitization for Slack webhook detection
27+
https://github.com/aboutcode-org/scancode.io/pull/2130
28+
29+
- feat: is_safe_url to mitigate SSRF in URL requests
30+
https://github.com/aboutcode-org/scancode.io/pull/2131
31+
32+
- feat: add search to resource tree
33+
https://github.com/aboutcode-org/scancode.io/pull/2114
34+
35+
- feat!: use uv and uv.lock for reproducible builds in Docker image
36+
https://github.com/aboutcode-org/scancode.io/pull/2134
37+
38+
- feat!: convert Dockerfile to multi-stage build
39+
840
v37.0.0 (2026-03-11)
941
--------------------
1042

RELEASE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
- `pyproject.toml`
88
- `scancodeio/__init__.py`
99
- `CHANGELOG.rst` (set date)
10-
- Commit and push this branch
10+
- Run `$ uv lock` to update the version in the `uv.lock` file
11+
- Commit and push this branch: "chore: bump version to vx.x.x for release"
1112
- Create a PR and merge once approved
1213
- Tag and push that tag. This will trigger the `pypi-release.yml` GitHub workflow that
1314
takes care of building the dist release files and upload those to pypi:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "scancodeio"
7-
version = "37.0.0"
7+
version = "37.1.0"
88
description = "Automate software composition analysis pipelines"
99
readme = "README.rst"
1010
requires-python = ">=3.12,<3.15"

scancodeio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
import git
3030

31-
VERSION = "37.0.0"
31+
VERSION = "37.1.0"
3232

3333
PROJECT_DIR = Path(__file__).resolve().parent
3434
ROOT_DIR = PROJECT_DIR.parent

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)