We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580f118 commit da5b4f8Copy full SHA for da5b4f8
CHANGELOG.md
@@ -11,6 +11,15 @@ beta releases are not included in this history. For a full list of all releases,
11
12
[//]: # (begin_release_notes)
13
14
+"1.7.2" (2020-06-17)
15
+====================
16
+
17
+Bugfixes
18
+--------
19
20
+- Fix unassigned variable error (#20200617)
21
22
23
"1.7.1" (2020-04-30)
24
====================
25
docs/spdx_report/spdx_helpers.html
@@ -93,6 +93,7 @@ <h2 id="examples">Examples</h2>
93
94
def determine_file_licence(path: Path) -> Optional[str]:
95
"""Determines the licence of a file based on the SPDX identifier."""
96
+ licence = None
97
try:
98
match = scan_file_for_pattern(path, SPDX_IDENTIFIER_REGEX_PATTERN)
99
if not match:
@@ -240,6 +241,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
240
241
</summary>
242
<pre><code class="python">def determine_file_licence(path: Path) -> Optional[str]:
243
244
245
246
247
docs/third_party_IP_report.csv
@@ -28,7 +28,7 @@ True,Mako,True,https://www.makotemplates.org/,MIT,Licence is compliant.
28
True,Markdown,True,https://Python-Markdown.github.io/,0BSD,Licence is compliant.
29
True,MarkupSafe,True,https://palletsprojects.com/p/markupsafe/,BSD-3-Clause,Licence is compliant.
30
True,mbed-tools-ci-scripts,False,https://github.com/ARMmbed/mbed-tools-ci-scripts,Apache-2.0,Licence is compliant.
31
-True,packaging,True,https://github.com/pypa/packaging,0BSD OR Apache-2.0,Licence is compliant.
+True,packaging,True,https://github.com/pypa/packaging,Apache-2.0 OR BSD-2-Clause,Licence is compliant.
32
True,pdoc3,True,https://pdoc3.github.io/pdoc/,AGPL-3.0,Package's licence manually checked: Accepted for this project since not distributed
33
True,pkginfo,True,https://code.launchpad.net/~tseaver/pkginfo/trunk,MIT,Licence is compliant.
34
True,ply,True,http://www.dabeaz.com/ply/,0BSD,Licence is compliant.
docs/third_party_IP_report.html
@@ -65,7 +65,7 @@
65
</head>
66
<body>
67
<h1>Project's 3rd party IP report</h1>
68
- <p><i>2020-04-30 11:35:39.777276</i></p>
+ <p><i>2020-06-17 19:10:54.408406</i></p>
69
<h2>Summary</h2>
70
<table>
71
<thead>
@@ -594,7 +594,7 @@ <h2>Package licences</h2>
594
https://github.com/pypa/packaging
595
</td>
596
<td style="text-align:center">
597
- <span style="color: ;">0BSD OR Apache-2.0</span>
+ <span style="color: ;">Apache-2.0 OR BSD-2-Clause</span>
598
599
600
docs/third_party_IP_report.txt
@@ -1,6 +1,6 @@
1
3rd party IP report for mbed-tools-ci-scripts
2
3
- 2020-04-30 11:35:39.777276
+ 2020-06-17 19:10:54.408406
4
5
# Summary:
6
Licence compliance: Compliant
@@ -215,7 +215,7 @@
215
[X] Compliant?
216
[X] Dependency?
217
URL: https://github.com/pypa/packaging
218
- Licence: 0BSD OR Apache-2.0
+ Licence: Apache-2.0 OR BSD-2-Clause
219
Licence compliance: Licence is compliant.
220
221
- pdoc3:
mbed_tools_ci_scripts/_version.py
@@ -10,8 +10,8 @@
10
This file is autogenerated, do not modify by hand.
"""
-__version__ = "1.7.1"
-COMMIT = "f3ecd2671a48dd4205ae93ffdc8fbf4ad0d03a37"
+__version__ = "1.7.2"
+COMMIT = "580f118748fc89458692ffa13b9dc0b78c0db5ae"
MAJOR = 1
MINOR = 7
-PATCH = 1
+PATCH = 2
news/20200617.bugfix
0 commit comments