Skip to content

Commit e309963

Browse files
Merge pull request #3410 from nexB/release-prep-v32.0.1
Release prep v32.0.1
2 parents f3086c5 + 58cfae2 commit e309963

File tree

5 files changed

+28
-9
lines changed

5 files changed

+28
-9
lines changed

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,29 @@ v32.1.0 (next, roadmap)
3232
license detection and reduce false positives.
3333
See https://github.com/nexB/scancode-toolkit/issues/3300
3434

35+
- A new `--todo` option is added to show the todo items that
36+
should be reviewed, which are ambiguous license/package
37+
detections.
38+
3539
- File categorization support added, a post scan plugin tagging
3640
files with priority levels for review, and also take advantage
3741
of these in other summary plugins.
3842
See https://github.com/nexB/scancode-toolkit/issues/1745
3943

44+
v32.0.1 - 2023-05-23
45+
---------------------
46+
47+
This is a minor bugfix release.
48+
49+
There are fixes for two issues in this release:
50+
- https://github.com/nexB/scancode-toolkit/issues/3407:
51+
here in typecode we had an improper import of ctypes.utils
52+
and this is fixed in a new release v30.0.1 of typecode
53+
- https://github.com/nexB/scancode-toolkit/issues/3408
54+
the setup.cfg and setup-mini.cfg was not aligned for plugin
55+
entrypoints.
56+
57+
4058
v32.0.0 - 2023-05-23
4159
---------------------
4260

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ soupsieve==2.3.2.post1
6767
spdx-tools==0.7.0rc0
6868
text-unidecode==1.3
6969
toml==0.10.2
70-
typecode==30.0.0
70+
typecode==30.0.1
7171
typecode-libmagic==5.39.210531
7272
typing-extensions==4.3.0
7373
urllib3==1.26.11

setup-mini.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 32.0.0
3+
version = 32.0.1
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
@@ -111,7 +111,7 @@ install_requires =
111111
urlpy
112112
xmltodict >= 0.11.0
113113
zipp >= 3.0.0; python_version < "3.9"
114-
typecode >= 30.0.0
114+
typecode >= 30.0.1
115115
# typecode[full] >= 30.0.0
116116
# extractcode[full] >= 31.0.0
117117

@@ -152,6 +152,7 @@ console_scripts =
152152
scancode = scancode.cli:scancode
153153
scancode-reindex-licenses = licensedcode.reindex:reindex_licenses
154154
scancode-license-data = licensedcode.license_db:dump_scancode_license_data
155+
regen-package-docs = packagedcode.regen_package_docs:regen_package_docs
155156

156157
# These are configurations for ScanCode plugins as setuptools entry points.
157158
# Each plugin entry hast this form:
@@ -163,7 +164,6 @@ console_scripts =
163164
scancode_pre_scan =
164165
ignore = scancode.plugin_ignore:ProcessIgnore
165166
facet = summarycode.facet:AddFacet
166-
classify = summarycode.classify_plugin:FileClassifier
167167

168168

169169
# scancode_scan is the entry point for scan plugins that run a scan after the
@@ -194,6 +194,7 @@ scancode_post_scan =
194194
filter-clues = cluecode.plugin_filter_clues:RedundantCluesFilter
195195
consolidate = summarycode.plugin_consolidate:Consolidator
196196
license-references = licensedcode.licenses_reference:LicenseReference
197+
classify = summarycode.classify_plugin:FileClassifier
197198

198199

199200
# scancode_output_filter is the entry point for filter plugins executed after

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 32.0.0
3+
version = 32.0.1
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
@@ -111,8 +111,8 @@ install_requires =
111111
urlpy
112112
xmltodict >= 0.11.0
113113
zipp >= 3.0.0; python_version < "3.9"
114-
typecode >= 30.0.0
115-
typecode[full] >= 30.0.0
114+
typecode >= 30.0.1
115+
typecode[full] >= 30.0.1
116116
extractcode[full] >= 31.0.0
117117

118118

src/scancode_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ 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.0'
135+
__version__ = '32.0.1'
136136

137137
#######################
138138
# used to warn user when the version is out of date
139-
__release_date__ = datetime.datetime(2023, 3, 20)
139+
__release_date__ = datetime.datetime(2023, 5, 23)
140140

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

0 commit comments

Comments
 (0)