diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2f2d41dbefb..1810e0ba373 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -64,12 +64,30 @@ Outputs: +30.1.0 - 2021-09-25 +-------------------- + +This is a bug fix release for these bugs: + +- https://github.com/nexB/scancode-toolkit/issues/2717 + +We now return the package in the summaries as before. + +There is also a minor API change: we no longer return a count of "null" empty +values in the summaries for license, copyrights, etc. + + +Thank you to: +- Thomas Druez @tdruez + + + 30.0.1 - 2021-09-24 -------------------- This is a minor bug fix release for these bugs: -- https://github.com/nexB/scancode-toolkit/issues/2713 +- https://github.com/nexB/commoncode/issues/31 - https://github.com/nexB/scancode-toolkit/issues/2713 We now correctly work with all supported Click versions. diff --git a/setup-mini.cfg b/setup-mini.cfg index 21346e5e910..87daed372ed 100644 --- a/setup-mini.cfg +++ b/setup-mini.cfg @@ -1,6 +1,6 @@ [metadata] name = scancode-toolkit-mini -version = 30.0.1 +version = 30.1.0 license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft description = ScanCode is a tool to scan code for license, copyright, package and their documented dependencies and other interesting facts. scancode-toolkit-mini is a special build that does not come with pre-built binary dependencies by default. These are instead installed separately or with the extra_requires scancode-toolkit-mini[full] diff --git a/setup.cfg b/setup.cfg index 5b613aefa60..a7e9cc7a600 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = scancode-toolkit -version = 30.0.1 +version = 30.1.0 license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft description = ScanCode is a tool to scan code for license, copyright, package and their documented dependencies and other interesting facts. diff --git a/src/scancode_config.py b/src/scancode_config.py index 73ff23e5936..570e1f98f8a 100644 --- a/src/scancode_config.py +++ b/src/scancode_config.py @@ -77,7 +77,7 @@ def _create_dir(location): # in case package is not installed or we do not have setutools/pkg_resources # on hand fall back to this version -__version__ = '30.0.1' +__version__ = '30.1.0' # used to warn user when the version is out of date __release_date__ = datetime.datetime(2021, 9, 24)