File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+
824v37.1.0 (2026-04-01)
925--------------------
1026
Original file line number Diff line number Diff line change 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:
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
2628cd scancode.io
2729source .venv/bin/activate
2830python -m pip install build
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " scancodeio"
7- version = " 37.1 .0"
7+ version = " 37.2 .0"
88description = " Automate software composition analysis pipelines"
99readme = " README.rst"
1010requires-python = " >=3.12,<3.15"
Original file line number Diff line number Diff line change 2828
2929import git
3030
31- VERSION = "37.1 .0"
31+ VERSION = "37.2 .0"
3232
3333PROJECT_DIR = Path (__file__ ).resolve ().parent
3434ROOT_DIR = PROJECT_DIR .parent
You can’t perform that action at this time.
0 commit comments