Skip to content

Commit c28be8d

Browse files
authored
chore: bump version to v37.2.0 for release (#2175)
Signed-off-by: tdruez <tdruez@aboutcode.org>
1 parent 110f4e7 commit c28be8d

5 files changed

Lines changed: 27 additions & 9 deletions

File tree

CHANGELOG.rst

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

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

8+
v37.2.0 (2026-06-12)
9+
--------------------
10+
11+
* chore: upgrade scancode-action to docker base v0.1 release by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2141
12+
* feat: add "base" Docker build stage by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2142
13+
* fix: fallback to license_declared when loading SPDX SBOM by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2144
14+
* feat!: Switch development workflow from local venv to Docker Compose by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2145
15+
* fix: relax validation for non-HTTP URLs by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2147
16+
* fix: load the .env in the Docker dev compose by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2149
17+
* chore: upgrade Django and cryptography to latest version by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2150
18+
* fix: replace the hardcoded /var/www/html by named volume by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2160
19+
* chore: bump minecode-pipelines version to 1.0.0 by @JonoYang in https://github.com/aboutcode-org/scancode.io/pull/2170
20+
* chore: update minecode-pipelines version to 1.0.1 by @JonoYang in https://github.com/aboutcode-org/scancode.io/pull/2171
21+
* Install Java and jadx in Dockerfile by @JonoYang in https://github.com/aboutcode-org/scancode.io/pull/2174
22+
* chore: upgrade dependencies by @tdruez in https://github.com/aboutcode-org/scancode.io/pull/2173
23+
824
v37.1.0 (2026-04-01)
925
--------------------
1026

RELEASE.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release instructions for `ScanCode.io`
22

3-
### Automated release workflow
3+
## Automated release workflow
44

55
- Create a new `release-x.x.x` branch
66
- Update the version in:
@@ -10,19 +10,21 @@
1010
- Run `$ uv lock` to update the version in the `uv.lock` file
1111
- Commit and push this branch: "chore: bump version to vx.x.x for release"
1212
- Create a PR and merge once approved
13-
- Tag and push that tag. This will trigger the `pypi-release.yml` GitHub workflow that
13+
- Tag and push that tag. This will trigger the `pypi-release.yml` GitHub workflow that
1414
takes care of building the dist release files and upload those to pypi:
15-
```
15+
16+
```sh
1617
VERSION=vx.x.x # <- Set the new version here
1718
git tag -a $VERSION -m ""
1819
git push origin $VERSION
1920
```
21+
2022
- Review the GitHub release created by the workflow at
2123
https://github.com/aboutcode-org/scancode.io/releases
2224

23-
### Manual build
25+
## Manual build
2426

25-
```
27+
```sh
2628
cd scancode.io
2729
source .venv/bin/activate
2830
python -m pip install build

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.1.0"
7+
version = "37.2.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.1.0"
31+
VERSION = "37.2.0"
3232

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

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)