Skip to content

Commit 5d8db2c

Browse files
Bump Version and add CHANGELOG for v32.0.4
Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
1 parent 9d42d1e commit 5d8db2c

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,17 @@ v32.1.0 (next, roadmap)
4242
See https://github.com/nexB/scancode-toolkit/issues/1745
4343

4444

45-
v32.0.3 - 2023-05-26
45+
v32.0.4 - 2023-06-07
46+
---------------------
47+
48+
This is a minor bugfix release with the following updates:
49+
50+
- Fixes a performance issue issue arising out of license detection
51+
on files happening in a single-threaded process_codebase step when the
52+
license CLI option is disabled for a package scan.
53+
Reference: https://github.com/nexB/scancode-toolkit/pull/3423
54+
55+
v32.0.3 - 2023-06-06
4656
---------------------
4757

4858
This is a minor bugfix release with the following updates:

setup-mini.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit-mini
3-
version = 32.0.3
3+
version = 32.0.4
44
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 32.0.3
3+
version = 32.0.4
44
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

src/scancode_config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,12 @@ def _create_dir(location):
132132
# 4. hardcoded This is the default, fallback version in case package is not installed or we
133133
# do not have a proper version otherwise.
134134
if not __version__:
135-
__version__ = '32.0.3'
135+
__version__ = '32.0.4'
136136

137137
#######################
138138
# used to warn user when the version is out of date
139-
__release_date__ = datetime.datetime(2023, 6, 6)
139+
# this is (year, month, day)
140+
__release_date__ = datetime.datetime(2023, 6, 7)
140141

141142
# See https://github.com/nexB/scancode-toolkit/issues/2653 for more information
142143
# on the data format version

0 commit comments

Comments
 (0)