Skip to content

Bump version for v34.10.0 release #1637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 21, 2025
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
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
=========

v34.9.6 (unreleased)
--------------------
v34.10.0 (2025-03-21)
---------------------

- Rename the ``docker``, ``docker_windows``, and ``root_filesystem`` modules to
``analyze_docker``, ``analyze_docker_windows``, and ``analyze_root_filesystem``
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- `CHANGELOG.rst` (set date)
- Commit and push this branch
- Create a PR and merge once approved
- Tag and push that tag. This will triggers the `pypi-release.yml` GitHub workflow that
- Tag and push that tag. This will trigger the `pypi-release.yml` GitHub workflow that
takes care of building the dist release files and upload those to pypi:
```
VERSION=vx.x.x # <- Set the new version here
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 = "34.9.5"
VERSION = "34.10.0"

PROJECT_DIR = Path(__file__).resolve().parent
ROOT_DIR = PROJECT_DIR.parent
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancodeio
version = 34.9.5
version = 34.10.0
license = Apache-2.0
description = Automate software composition analysis pipelines
long_description = file:README.rst
Expand Down Expand Up @@ -159,7 +159,7 @@ scancodeio_pipelines =

[bumpver]
version_pattern = "MAJOR.MINOR.PATCH"
current_version = "34.9.5"
current_version = "34.10.0"

[bumpver:file_patterns]
setup.cfg =
Expand Down