Skip to content

Commit 6e4b931

Browse files
committed
🚀 releasing version 3.2.6 @ 2025-09-15 10:41
[skip ci]
1 parent 39ef9fc commit 6e4b931

20 files changed

+41
-1802
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,32 @@ This project was forked from version 1.7.4 of [mbed-tools-ci-scripts](https://gi
1717

1818
[//]: # (begin_release_notes)
1919

20+
"3.2.6" (2025-09-15)
21+
====================
22+
23+
Bugfixes
24+
--------
25+
26+
- :gear: `[go]` install `goreleaser` v2 (#202509091458)
27+
- Dependency upgrade: fetch-metadata-2.3.0 (#20250127075643)
28+
- Dependency upgrade: upload-artifact-4.6.1 (#20250224073133)
29+
- Dependency upgrade: codeql-action-3.28.2 (#20250627180406)
30+
- Dependency upgrade: scorecard-action-2.4.1 (#20250627181753)
31+
- Dependency upgrade: setup-python-6 (#20250904114652)
32+
- Dependency upgrade: checkout-5 (#20250909143714)
33+
- Dependency upgrade: upload-artifact-4.6.2 (#20250909144005)
34+
- Dependency upgrade: fetch-metadata-2.4.0 (#20250909144051)
35+
- Dependency upgrade: codeql-action-3.30.2 (#20250910060644)
36+
- Dependency upgrade: codeql-action-3.30.3 (#20250915062447)
37+
- :gear: `[Python]` try to handle deprecation in Python for retrieving licensing information (#20250915112924)
38+
39+
40+
Misc
41+
----
42+
43+
- #20250627104347
44+
45+
2046
"3.2.5" (2025-01-13)
2147
====================
2248

continuous_delivery_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__ = "3.2.5"
14-
COMMIT = "84a63ae8281f0e4aa524cb69c1a284d3f2672708"
13+
__version__ = "3.2.6"
14+
COMMIT = "39ef9fc9203e6633b9e8df6ce7f7ee0067de27ff"
1515
MAJOR = 3
1616
MINOR = 2
17-
PATCH = 5
17+
PATCH = 6

docs/plugins/golang.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
100100

101101

102102
def _install_goreleaser_command_list() -&gt; List[str]:
103-
return [&#34;go&#34;, &#34;install&#34;, &#34;github.com/goreleaser/goreleaser@latest&#34;]
103+
return [&#34;go&#34;, &#34;install&#34;, &#34;github.com/goreleaser/goreleaser/v2@latest&#34;]
104104

105105

106106
def _call_golds(output_directory: Path, module: str) -&gt; None:

docs/plugins/python.html

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.python</code>
6363

6464

6565
def _create_wheel() -&gt; None:
66+
logger.info(&#34;Creating wheel&#34;)
6667
root = configuration.get_value(ConfigurationVariable.PROJECT_ROOT)
6768
with cd(root):
6869
check_call(
@@ -196,11 +197,14 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.python</code>
196197

197198
def can_get_project_metadata(self) -&gt; bool:
198199
&#34;&#34;&#34;States whether project metadata can be retrieved.&#34;&#34;&#34;
199-
return True
200+
# FIXME Comment out retrieving project metadata as deprecated
201+
# (SetuptoolsDeprecationWarning: License classifiers are deprecated)
202+
return False
200203

201204
def should_include_spdx_in_package(self) -&gt; bool:
202205
&#34;&#34;&#34;States whether the SPDX documents should be included in the package.&#34;&#34;&#34;
203-
return True
206+
# FIXME Comment out SPDX package as no longer working
207+
return False
204208

205209
def get_current_spdx_project(self) -&gt; Optional[SpdxProject]:
206210
&#34;&#34;&#34;Gets the current SPDX description.&#34;&#34;&#34;
@@ -261,11 +265,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
261265

262266
def can_get_project_metadata(self) -&gt; bool:
263267
&#34;&#34;&#34;States whether project metadata can be retrieved.&#34;&#34;&#34;
264-
return True
268+
# FIXME Comment out retrieving project metadata as deprecated
269+
# (SetuptoolsDeprecationWarning: License classifiers are deprecated)
270+
return False
265271

266272
def should_include_spdx_in_package(self) -&gt; bool:
267273
&#34;&#34;&#34;States whether the SPDX documents should be included in the package.&#34;&#34;&#34;
268-
return True
274+
# FIXME Comment out SPDX package as no longer working
275+
return False
269276

270277
def get_current_spdx_project(self) -&gt; Optional[SpdxProject]:
271278
&#34;&#34;&#34;Gets the current SPDX description.&#34;&#34;&#34;

docs/third_party_IP_report.csv

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)