diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c0044fd74a..9d1801ca006 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ------------------------ diff --git a/setup-mini.cfg b/setup-mini.cfg index 7bc87419aaa..f1e54c24714 100644 --- a/setup-mini.cfg +++ b/setup-mini.cfg @@ -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 diff --git a/setup.cfg b/setup.cfg index ca987d6dc42..4fff8b0bd99 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/src/scancode_config.py b/src/scancode_config.py index d03e9409f27..c0614c363c0 100644 --- a/src/scancode_config.py +++ b/src/scancode_config.py @@ -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