Skip to content

Commit c3438eb

Browse files
committed
Bump release to 31.0.0 (final)
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent b984a32 commit c3438eb

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

CHANGELOG.rst

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,28 @@ Changelog
33

44

55

6-
32.0.0 (next next, roadmap)
7-
---------------------------
6+
v32.0.0 (next next, roadmap)
7+
----------------------------------
88

99
Package detection:
1010
~~~~~~~~~~~~~~~~~~
1111

1212
- We now support new package manifest formats:
13+
1314
- OpenWRT packages.
1415
- Yocto/BitBake .bb recipes.
1516

1617

18+
License detection:
19+
~~~~~~~~~~~~~~~~~~~
20+
21+
- There is a major update to license detection where we now combine one or
22+
matches in a larger license detecion. This remove a larger number of false
23+
positive or ambiguous license detections.
24+
1725

18-
31.0.0 (next)
26+
27+
v31.0.0 - 2022-08-17
1928
-----------------------
2029

2130
This is a major release with important bug and security fixes, new and improved
@@ -96,12 +105,10 @@ License detection:
96105

97106
- There have been significant license detection rules and licenses updates:
98107

99-
- XX new licenses have been added,
100-
- XX existing license metadata have been updated,
101-
- XXXX new license detection rules have been added, and
102-
- XXXX existing license rules have been updated.
103-
- XXXX existing false positive license rules have been removed (see below).
104-
- The SPDX license list has been updated to the latest v3.16
108+
- 107 new licenses have been added (total is now 1954)
109+
- 6780 new license detection rules have been added (total is now 32259)
110+
- 6753 existing false positive license rules have been removed (see below).
111+
- The SPDX license list has been updated to the latest v3.17
105112

106113
- The rule attribute "only_known_words" has been renamed to "is_continuous" and its
107114
meaning has been updated and expanded. A rule tagged as "is_continuous" can only
@@ -358,8 +365,9 @@ Development environment and Code API changes:
358365
environment variable. There is no need to replace the regen=False with
359366
regen=True in the code.
360367

368+
361369
Miscellaneous
362-
--------------
370+
~~~~~~~~~~~~~~~~~~~~~~~~
363371

364372
- Added support for usage of shortcut flags
365373
- `-A` or `--about`
@@ -368,7 +376,8 @@ Miscellaneous
368376
- `-V` or `--version` can be used.
369377

370378

371-
30.1.0 - 2021-09-25
379+
380+
v30.1.0 - 2021-09-25
372381
--------------------
373382

374383
This is a bug fix release for these bugs:
@@ -386,7 +395,7 @@ Thank you to:
386395

387396

388397

389-
30.0.1 - 2021-09-24
398+
v30.0.1 - 2021-09-24
390399
--------------------
391400

392401
This is a minor bug fix release for these bugs:
@@ -402,7 +411,7 @@ Thank you to:
402411

403412

404413

405-
30.0.0 - 2021-09-23
414+
v30.0.0 - 2021-09-23
406415
--------------------
407416

408417
This is a major release with new features, and several bug fixes and

setup-mini.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit-mini
3-
version = 31.0.0rc6
3+
version = 31.0.0
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 31.0.0rc6
3+
version = 31.0.0
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ def _create_dir(location):
7777

7878
# in case package is not installed or we do not have setutools/pkg_resources
7979
# on hand fall back to this version
80-
__version__ = '31.0.0rc6'
80+
__version__ = '31.0.0'
8181

8282
# used to warn user when the version is out of date
83-
__release_date__ = datetime.datetime(2022, 8, 15)
83+
__release_date__ = datetime.datetime(2022, 8, 17)
8484

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

0 commit comments

Comments
 (0)