Skip to content

Commit e26187a

Browse files
Merge pull request #3839 from nexB/release-prep-v32.2.1
Bump version to v32.2.1
2 parents bd36c8b + b96068c commit e26187a

5 files changed

+15
-5
lines changed

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ v33.0.0 (next next, roadmap)
3434
of these in other summary plugins.
3535
See https://github.com/nexB/scancode-toolkit/issues/1745
3636

37+
38+
v32.2.1 - 2024-07-02
39+
---------------------
40+
3741
- Add support for parsing resolved packages and dependency relationships
3842
from nuget lockfile `packages.lock.json`.
3943
See https://github.com/nexB/scancode-toolkit/pull/3825
@@ -60,6 +64,12 @@ v33.0.0 (next next, roadmap)
6064
- Add support for pyproject.toml files in python projects.
6165
See https://github.com/nexB/scancode-toolkit/issues/3753
6266

67+
- More improved copyright detection, see
68+
https://github.com/nexB/scancode-toolkit/pull/3752
69+
70+
- ``scancode-toolkit`` is now installable from the fedora repo.
71+
See https://github.com/nexB/scancode-toolkit/pull/3824
72+
6373
v32.2.0 - 2024-06-19
6474
----------------------
6575

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
image_name: macOS-13
125125
python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12']
126126
test_suites:
127-
all: venv/bin/pytest -n 2 -vvs
127+
all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2
128128

129129
- template: etc/ci/azure-win.yml
130130
parameters:

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.2.0
3+
version = 32.2.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

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.2.0
3+
version = 32.2.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

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.2.0'
135+
__version__ = '32.2.1'
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(2024, 6, 19)
140+
__release_date__ = datetime.datetime(2024, 7, 2)
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)