Skip to content

Commit da5b4f8

Browse files
committed
🚀 releasing version 1.7.2 @ 2020-06-17 19:10
[skip ci]
1 parent 580f118 commit da5b4f8

File tree

7 files changed

+19
-9
lines changed

7 files changed

+19
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ beta releases are not included in this history. For a full list of all releases,
1111

1212
[//]: # (begin_release_notes)
1313

14+
"1.7.2" (2020-06-17)
15+
====================
16+
17+
Bugfixes
18+
--------
19+
20+
- Fix unassigned variable error (#20200617)
21+
22+
1423
"1.7.1" (2020-04-30)
1524
====================
1625

docs/spdx_report/spdx_helpers.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ <h2 id="examples">Examples</h2>
9393

9494
def determine_file_licence(path: Path) -&gt; Optional[str]:
9595
&#34;&#34;&#34;Determines the licence of a file based on the SPDX identifier.&#34;&#34;&#34;
96+
licence = None
9697
try:
9798
match = scan_file_for_pattern(path, SPDX_IDENTIFIER_REGEX_PATTERN)
9899
if not match:
@@ -240,6 +241,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
240241
</summary>
241242
<pre><code class="python">def determine_file_licence(path: Path) -&gt; Optional[str]:
242243
&#34;&#34;&#34;Determines the licence of a file based on the SPDX identifier.&#34;&#34;&#34;
244+
licence = None
243245
try:
244246
match = scan_file_for_pattern(path, SPDX_IDENTIFIER_REGEX_PATTERN)
245247
if not match:

docs/third_party_IP_report.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ True,Mako,True,https://www.makotemplates.org/,MIT,Licence is compliant.
2828
True,Markdown,True,https://Python-Markdown.github.io/,0BSD,Licence is compliant.
2929
True,MarkupSafe,True,https://palletsprojects.com/p/markupsafe/,BSD-3-Clause,Licence is compliant.
3030
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.
31+
True,packaging,True,https://github.com/pypa/packaging,Apache-2.0 OR BSD-2-Clause,Licence is compliant.
3232
True,pdoc3,True,https://pdoc3.github.io/pdoc/,AGPL-3.0,Package's licence manually checked: Accepted for this project since not distributed
3333
True,pkginfo,True,https://code.launchpad.net/~tseaver/pkginfo/trunk,MIT,Licence is compliant.
3434
True,ply,True,http://www.dabeaz.com/ply/,0BSD,Licence is compliant.

docs/third_party_IP_report.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</head>
6666
<body>
6767
<h1>Project's 3rd party IP report</h1>
68-
<p><i>2020-04-30 11:35:39.777276</i></p>
68+
<p><i>2020-06-17 19:10:54.408406</i></p>
6969
<h2>Summary</h2>
7070
<table>
7171
<thead>
@@ -594,7 +594,7 @@ <h2>Package licences</h2>
594594
https://github.com/pypa/packaging
595595
</td>
596596
<td style="text-align:center">
597-
<span style="color: ;">0BSD OR Apache-2.0</span>
597+
<span style="color: ;">Apache-2.0 OR BSD-2-Clause</span>
598598

599599
</td>
600600
<td style="text-align:center">

docs/third_party_IP_report.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
3rd party IP report for mbed-tools-ci-scripts
22

3-
2020-04-30 11:35:39.777276
3+
2020-06-17 19:10:54.408406
44

55
# Summary:
66
Licence compliance: Compliant
@@ -215,7 +215,7 @@
215215
[X] Compliant?
216216
[X] Dependency?
217217
URL: https://github.com/pypa/packaging
218-
Licence: 0BSD OR Apache-2.0
218+
Licence: Apache-2.0 OR BSD-2-Clause
219219
Licence compliance: Licence is compliant.
220220

221221
- pdoc3:

mbed_tools_ci_scripts/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
1111
This file is autogenerated, do not modify by hand.
1212
"""
13-
__version__ = "1.7.1"
14-
COMMIT = "f3ecd2671a48dd4205ae93ffdc8fbf4ad0d03a37"
13+
__version__ = "1.7.2"
14+
COMMIT = "580f118748fc89458692ffa13b9dc0b78c0db5ae"
1515
MAJOR = 1
1616
MINOR = 7
17-
PATCH = 1
17+
PATCH = 2

news/20200617.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)