Skip to content

Commit c157593

Browse files
Merge pull request #3527 from nexB/release-prep-32.0.7
Release prep 32.0.7
2 parents 9e4d706 + 66017bc commit c157593

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

CHANGELOG.rst

+30
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,36 @@ 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
46+
------------------------
47+
48+
This is a minor release with a lot of license detection
49+
improvements, with new and updated license detection rules
50+
and new licenses.
51+
52+
- 33 new licenses, 30 licenses updated
53+
- 70 new and updated license rules
54+
55+
The main updates over the previous stable release are:
56+
57+
- To the license Rule class adds is_license_clue attribute
58+
and is_deprecated attribute to support license clues
59+
detection, and always maintain consistency on unique rule
60+
names. Adds fixes for other license detection bug related
61+
to license clues, bug in setup.cfg license detection and
62+
makes license detection identifiers python-safe. See
63+
https://github.com/nexB/scancode-toolkit/pull/3462
64+
65+
- Update/Add new licenses and license rules. See
66+
https://github.com/nexB/scancode-toolkit/pull/3470
67+
https://github.com/nexB/scancode-toolkit/pull/3513
68+
69+
- Bump commoncode to v31.0.3 fixing a VirtualCodebase
70+
creation issue when there is a directory under the
71+
root with the same name as the root directory itself.
72+
https://github.com/nexB/commoncode/issues/57
73+
https://github.com/nexB/scancode-toolkit/pull/3495
74+
4575

4676
v32.0.6 - 2023-07-13
4777
------------------------

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.6
3+
version = 32.0.7
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.6
3+
version = 32.0.7
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.6'
135+
__version__ = '32.0.7'
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, 7, 13)
140+
__release_date__ = datetime.datetime(2023, 9, 28)
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)