Skip to content

Commit d735945

Browse files
committed
🚀 releasing version 2.10.2 @ 2022-12-21 15:29
[skip ci]
1 parent 5fb7db2 commit d735945

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

CHANGELOG.md

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

1818
[//]: # (begin_release_notes)
1919

20+
"2.10.2" (2022-12-21)
21+
=====================
22+
23+
Bugfixes
24+
--------
25+
26+
- Fixed shortcut tag rendering when version contains `0` (#20221221151424)
27+
28+
2029
"2.10.1" (2022-12-21)
2130
=====================
2231

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__ = "2.10.1"
14-
COMMIT = "bc2aa3a40ad89787d7851800c67521e32b031f3b"
13+
__version__ = "2.10.2"
14+
COMMIT = "5fb7db2cc08dbe9e861e8bc3234ce2508d4c330c"
1515
MAJOR = 2
1616
MINOR = 10
17-
PATCH = 1
17+
PATCH = 2

docs/third_party_IP_report.html

Lines changed: 1 addition & 1 deletion
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>2022-12-21 12:47:01.943188</i></p>
68+
<p><i>2022-12-21 15:29:16.833895</i></p>
6969
<h2>Summary</h2>
7070
<table>
7171
<thead>

docs/third_party_IP_report.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
3rd party IP report for continuous-delivery-scripts
22

3-
2022-12-21 12:47:01.943188
3+
2022-12-21 15:29:16.833895
44

55
# Summary:
66
Licence compliance: Not compliant

docs/utils/versioning.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ <h1 class="title">Module <code>continuous_delivery_scripts.utils.versioning</cod
141141
if not tag_shortcut:
142142
return shortcuts
143143
major_version = version_elements.get(auto_version_tool.definitions.SemVerSigFig.major, None)
144-
if major_version:
145-
shortcuts[major_version] = True
144+
if major_version or major_version == 0:
145+
shortcuts[f&#34;{major_version}&#34;] = True
146146
minor_version = version_elements.get(auto_version_tool.definitions.SemVerSigFig.minor, None)
147-
if minor_version and major_version:
147+
if (minor_version or minor_version == 0) and (major_version or major_version == 0):
148148
shortcuts[f&#34;{major_version}.{minor_version}&#34;] = True
149149
if commit_type == CommitType.BETA:
150150
shortcuts[auto_version_tool.config.PRERELEASE_TOKEN] = False
@@ -293,10 +293,10 @@ <h2 id="returns">Returns</h2>
293293
if not tag_shortcut:
294294
return shortcuts
295295
major_version = version_elements.get(auto_version_tool.definitions.SemVerSigFig.major, None)
296-
if major_version:
297-
shortcuts[major_version] = True
296+
if major_version or major_version == 0:
297+
shortcuts[f&#34;{major_version}&#34;] = True
298298
minor_version = version_elements.get(auto_version_tool.definitions.SemVerSigFig.minor, None)
299-
if minor_version and major_version:
299+
if (minor_version or minor_version == 0) and (major_version or major_version == 0):
300300
shortcuts[f&#34;{major_version}.{minor_version}&#34;] = True
301301
if commit_type == CommitType.BETA:
302302
shortcuts[auto_version_tool.config.PRERELEASE_TOKEN] = False

news/20221221151424.bugfix

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

0 commit comments

Comments
 (0)