Skip to content

Commit 95ef123

Browse files
Bump version to v32.0.8
Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
1 parent c84c8e9 commit 95ef123

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

CHANGELOG.rst

+21-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,27 @@ v32.1.0 (next, roadmap)
4242
of these in other summary plugins.
4343
See https://github.com/nexB/scancode-toolkit/issues/1745
4444

45-
v32.0.6 - 2023-07-13
45+
46+
v32.0.8 - 2023-10-11
47+
------------------------
48+
49+
This is a minor release with license detection
50+
improvements, with new and updated license detection rules
51+
and new licenses.
52+
53+
The main updates over the previous stable release are:
54+
55+
- New and updated license rules fixing several license
56+
detection bugs. See for more details:
57+
https://github.com/nexB/scancode-toolkit/pull/3545
58+
https://github.com/nexB/scancode-toolkit/pull/3519
59+
60+
- Bugfix for an epoch parser bug with numeric values
61+
in rpm. See for more details:
62+
https://github.com/nexB/scancode-toolkit/pull/3520
63+
64+
65+
v32.0.7 - 2023-09-28
4666
------------------------
4767

4868
This is a minor release with a lot of license detection

setup-mini.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit-mini
3-
version = 32.0.7
3+
version = 32.0.8
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 32.0.7
3+
version = 32.0.8
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,12 +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.7'
135+
__version__ = '32.0.8'
136136

137137
#######################
138138
# used to warn user when the version is out of date
139139
# this is (year, month, day)
140-
__release_date__ = datetime.datetime(2023, 9, 28)
140+
__release_date__ = datetime.datetime(2023, 10, 11)
141141

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

0 commit comments

Comments
 (0)