Skip to content

Commit ded56e9

Browse files
committed
Correct typo in date and bump to new release
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 43aaa18 commit ded56e9

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ License detection:
5454
detected license only once. This data can contain the reference license text
5555
as an option.
5656

57+
v31.2.1 - 2022-10-05
58+
----------------------------------
59+
60+
This is a minor release to fix a typo in a date.
61+
5762

5863
v31.2.0 - 2022-10-05
5964
----------------------------------

setup-mini.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit-mini
3-
version = 31.2.0
3+
version = 31.2.1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 31.2.0
3+
version = 31.2.1
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

+2-2
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.2.0'
80+
__version__ = '31.2.1'
8181

8282
# used to warn user when the version is out of date
83-
__release_date__ = datetime.datetime(2022, 10, 05)
83+
__release_date__ = datetime.datetime(2022, 10, 5)
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)