Skip to content

Release prep 32.0.7 #3527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,36 @@ v32.1.0 (next, roadmap)
of these in other summary plugins.
See https://github.com/nexB/scancode-toolkit/issues/1745

v32.0.6 - 2023-07-13
------------------------

This is a minor release with a lot of license detection
improvements, with new and updated license detection rules
and new licenses.

- 33 new licenses, 30 licenses updated
- 70 new and updated license rules

The main updates over the previous stable release are:

- To the license Rule class adds is_license_clue attribute
and is_deprecated attribute to support license clues
detection, and always maintain consistency on unique rule
names. Adds fixes for other license detection bug related
to license clues, bug in setup.cfg license detection and
makes license detection identifiers python-safe. See
https://github.com/nexB/scancode-toolkit/pull/3462

- Update/Add new licenses and license rules. See
https://github.com/nexB/scancode-toolkit/pull/3470
https://github.com/nexB/scancode-toolkit/pull/3513

- Bump commoncode to v31.0.3 fixing a VirtualCodebase
creation issue when there is a directory under the
root with the same name as the root directory itself.
https://github.com/nexB/commoncode/issues/57
https://github.com/nexB/scancode-toolkit/pull/3495


v32.0.6 - 2023-07-13
------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup-mini.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancode-toolkit-mini
version = 32.0.6
version = 32.0.7
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = scancode-toolkit
version = 32.0.6
version = 32.0.7
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
4 changes: 2 additions & 2 deletions src/scancode_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ def _create_dir(location):
# 4. hardcoded This is the default, fallback version in case package is not installed or we
# do not have a proper version otherwise.
if not __version__:
__version__ = '32.0.6'
__version__ = '32.0.7'

#######################
# used to warn user when the version is out of date
# this is (year, month, day)
__release_date__ = datetime.datetime(2023, 7, 13)
__release_date__ = datetime.datetime(2023, 9, 28)

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