Skip to content

Commit c15414b

Browse files
authored
Merge pull request #3085 from nexB/release-31-1-1
Prepare Release 31.1.1
2 parents 686ca78 + 9a98ac2 commit c15414b

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ License detection:
3232

3333

3434

35+
36+
v31.1.1 - 2022-09-02
37+
----------------------------------
38+
39+
This is a minor release with a bug fix.
40+
41+
- Do not display tracing/debug outputs at runtime
42+
43+
44+
3545
v31.1.0 - 2022-08-29
3646
----------------------------------
3747

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import pytest
2222

23-
TRACE = True
23+
TRACE = False
2424

2525
"""
2626
A pytest conftest.py for scancode-toolkit to control which tests to run and when.

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.1.0
3+
version = 31.1.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

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.1.0
3+
version = 31.1.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/packagedcode/win_reg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# TODO: check for chocolatey
2929
# TODO: Windows appstore
3030

31-
TRACE = True
31+
TRACE = False
3232

3333

3434
def logger_debug(*args):

src/textcode/analysis.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ def js_map_sources_lines(location):
239239
entry = replace_verbatim_cr_lf_chars(entry)
240240
for line in entry.splitlines():
241241
l = remove_verbatim_cr_lf_tab_chars(line)
242-
print(repr(l), l)
243242
yield l
244243

245244

0 commit comments

Comments
 (0)