Skip to content

Commit 2c46c57

Browse files
Merge pull request #3454 from nexB/release-prep-v32.0.6
Release prep v32.0.6
2 parents f55754a + bf69f32 commit 2c46c57

File tree

5 files changed

+41
-7
lines changed

5 files changed

+41
-7
lines changed

.github/workflows/scancode-release.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,7 @@ jobs:
368368
fail-fast: true
369369
matrix:
370370
os: [macos-11, macos-12]
371-
# python 3.7 is temporarily removed from release scripts
372-
# see https://github.com/nexB/scancode-toolkit/issues/3435
373-
pyver: ["3.8", "3.9", "3.10", "3.11"]
371+
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11"]
374372

375373
steps:
376374
- uses: actions/checkout@v3

CHANGELOG.rst

+36
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,42 @@ v32.1.0 (next, roadmap)
4242
See https://github.com/nexB/scancode-toolkit/issues/1745
4343

4444

45+
v32.0.6 - 2023-07-13
46+
------------------------
47+
48+
This is a minor release with a lot of license and package detection
49+
improvements, specially for maven packages. We also support the SPDX
50+
license list 3.21 now. The main updates over the previous stable
51+
release are:
52+
53+
- New and updated licenses, including support for newly released
54+
SPDX license list version 3.21. For more details see
55+
https://github.com/nexB/scancode-toolkit/pull/3437
56+
57+
- Fixes in summary plugin for licenses, and top-level license
58+
detections. https://github.com/nexB/scancode-toolkit/pull/3430
59+
60+
- Updated maven license and package detections, with fixes for
61+
various maven package manifest parsing, improved top-level
62+
package assembly, ecosystem specific package license detection,
63+
fixes in ``--todo`` plugin, updated license detection rules/heuristics
64+
and other misc changes. For more details see:
65+
https://github.com/nexB/scancode-toolkit/pull/3447
66+
67+
- Improved Gemfile.lock parsing. For more details see
68+
https://github.com/nexB/scancode-toolkit/pull/3444
69+
70+
- Auto-review plugin to get todo items for scan review, with
71+
the new ``--todo`` CLI option. For more details see:
72+
https://github.com/nexB/scancode-toolkit/pull/3353
73+
74+
- Misc. license and copyright detection improvements at
75+
https://github.com/nexB/scancode-toolkit/pull/3346
76+
77+
- Other misc. minor bugfixes detailed in all the previous
78+
release-candidates.
79+
80+
4581
v32.0.5rc3 - 2023-06-23
4682
------------------------
4783

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.5rc3
3+
version = 32.0.6
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.5rc3
3+
version = 32.0.6
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.5rc3'
135+
__version__ = '32.0.6'
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, 6, 23)
140+
__release_date__ = datetime.datetime(2023, 7, 13)
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)