Skip to content

Commit 001b91c

Browse files
committed
Bump version to v35.0.0 for release
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent debf332 commit 001b91c

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Changelog
22
=========
33

4-
v34.12.0 (unreleased)
5-
---------------------
4+
v35.0.0 (2025-06-23)
5+
--------------------
66

77
- Add support for Python 3.13.
88
Upgrade the base image in Dockerfile to ``python:3.13-slim``.

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 = "34.11.0"
31+
VERSION = "35.0.0"
3232

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

scanpipe/management/commands/flush-projects.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ def handle(self, *inputs, **options):
112112
self.stdout.write(msg)
113113
self.stdout.write("\n".join([f"- {project.name}" for project in projects]))
114114
return
115-
# sys.exit(0)
116115

117116
if options["interactive"]:
118117
confirm = input(

scanpipe/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def delete(self, *args, **kwargs):
229229
Note that projects with queued or running pipeline runs cannot be deleted.
230230
See the `_raise_if_run_in_progress` method.
231231
The following if statements should not be triggered unless the `.delete()`
232-
method is directly call from a instance of this class.
232+
method is directly call from an instance of this class.
233233
"""
234234
with suppress(redis.exceptions.ConnectionError, AttributeError):
235235
if self.status == self.Status.RUNNING:

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancodeio
3-
version = 34.11.0
3+
version = 35.0.0
44
license = Apache-2.0
55
description = Automate software composition analysis pipelines
66
long_description = file:README.rst
@@ -161,7 +161,7 @@ scancodeio_pipelines =
161161

162162
[bumpver]
163163
version_pattern = "MAJOR.MINOR.PATCH"
164-
current_version = "34.11.0"
164+
current_version = "35.0.0"
165165

166166
[bumpver:file_patterns]
167167
setup.cfg =

0 commit comments

Comments
 (0)