Skip to content

Commit

Permalink
Merge pull request #3527 from nexB/release-prep-32.0.7
Browse files Browse the repository at this point in the history
Release prep 32.0.7
  • Loading branch information
AyanSinhaMahapatra committed Sep 28, 2023
2 parents 9e4d706 + 66017bc commit c157593
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
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

0 comments on commit c157593

Please sign in to comment.