Skip to content

Commit 3cb9fc7

Browse files
committed
🚀 releasing version 2.0.1 @ 2021-02-05 01:19
[skip ci]
1 parent 71988b8 commit 3cb9fc7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+145
-100
lines changed

CHANGELOG.md

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

1414
[//]: # (begin_release_notes)
1515

16+
"2.0.1" (2021-02-05)
17+
====================
18+
19+
Bugfixes
20+
--------
21+
22+
- Fix for clones of private repository (#212102041830)
23+
- The 0.8.6 release of the `licenseheaders` contains a bug. Pin its version until it is fixed upstream. (#20210205001245)
24+
25+
26+
Improved Documentation
27+
----------------------
28+
29+
- Updated Copyright (#20210205000735)
30+
31+
1632
"2.0.0" (2020-11-30)
1733
====================
1834

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.0.0"
14-
COMMIT = "171e960cf9c9d05ba888b7788265a930930c3ec4"
13+
__version__ = "2.0.1"
14+
COMMIT = "71988b8e886b9f6ee33048accb3ea91d63776645"
1515
MAJOR = 2
1616
MINOR = 0
17-
PATCH = 0
17+
PATCH = 1

docs/assert_news.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.assert_news</code></h
3232
<span>Expand source code</span>
3333
</summary>
3434
<pre><code class="python">#
35-
# Copyright (C) 2020 Arm. All rights reserved.
35+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3636
# SPDX-License-Identifier: Apache-2.0
3737
#
3838
&#34;&#34;&#34;Checks if valid news files are created for changes in the project.&#34;&#34;&#34;

docs/create_news_file.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2 id="usage">Usage</h2>
3434
<span>Expand source code</span>
3535
</summary>
3636
<pre><code class="python">#
37-
# Copyright (C) 2020 Arm. All rights reserved.
37+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3838
# SPDX-License-Identifier: Apache-2.0
3939
#
4040
&#34;&#34;&#34;Easy news files generation.

docs/generate_docs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.generate_docs</code><
3232
<span>Expand source code</span>
3333
</summary>
3434
<pre><code class="python">#
35-
# Copyright (C) 2020 Arm. All rights reserved.
35+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3636
# SPDX-License-Identifier: Apache-2.0
3737
#
3838
&#34;&#34;&#34;Generates documentation.&#34;&#34;&#34;

docs/generate_news.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.generate_news</code><
3232
<span>Expand source code</span>
3333
</summary>
3434
<pre><code class="python">#
35-
# Copyright (C) 2020 Arm. All rights reserved.
35+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3636
# SPDX-License-Identifier: Apache-2.0
3737
#
3838
&#34;&#34;&#34;Handles usage of towncrier for automated changelog generation and pyautoversion for versioning.&#34;&#34;&#34;
@@ -90,7 +90,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.generate_news</code><
9090
new_version: Optional[str] = None
9191
is_new_version: bool = False
9292
with cd(os.path.dirname(project_config_path)):
93-
old, _, updates = auto_version_tool.main(
93+
old, new_version, updates = auto_version_tool.main(
9494
release=is_release,
9595
enable_file_triggers=enable_file_triggers,
9696
commit_count_as=bump,
@@ -99,7 +99,9 @@ <h1 class="title">Module <code>continuous_delivery_scripts.generate_news</code><
9999
# Autoversion second returned value is not actually the new version
100100
# There seem to be a bug in autoversion.
101101
# This is why the following needs to be done to determine the version
102-
new_version = updates[&#34;__version__&#34;]
102+
for k, v in updates.items():
103+
if &#34;version&#34; in str(k).lower():
104+
new_version = updates[k]
103105
is_new_version = old != new_version
104106
logger.info(&#34;:: Determining the new version&#34;)
105107
logger.info(f&#34;Version: {new_version}&#34;)

docs/get_config.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.get_config</code></h1
3232
<span>Expand source code</span>
3333
</summary>
3434
<pre><code class="python">#
35-
# Copyright (C) 2020 Arm. All rights reserved.
35+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3636
# SPDX-License-Identifier: Apache-2.0
3737
#
3838
&#34;&#34;&#34;Retrieves configuration values.&#34;&#34;&#34;

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="title">Package <code>continuous_delivery_scripts</code></h1>
3232
<span>Expand source code</span>
3333
</summary>
3434
<pre><code class="python">#
35-
# Copyright (C) 2020 Arm. All rights reserved.
35+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3636
# SPDX-License-Identifier: Apache-2.0
3737
#
3838
&#34;&#34;&#34;Scripts and utilities used by the CI pipeline.&#34;&#34;&#34;

docs/language_specifics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.language_specifics</c
3232
<span>Expand source code</span>
3333
</summary>
3434
<pre><code class="python">#
35-
# Copyright (C) 2020 Arm. All rights reserved.
35+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3636
# SPDX-License-Identifier: Apache-2.0
3737
#
3838
&#34;&#34;&#34;Language plugins Loader.&#34;&#34;&#34;

docs/license_files.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.license_files</code><
3434
<span>Expand source code</span>
3535
</summary>
3636
<pre><code class="python">#
37-
# Copyright (C) 2020 Arm. All rights reserved.
37+
# Copyright (C) 2020-2021 Arm. All rights reserved.
3838
# SPDX-License-Identifier: Apache-2.0
3939
#
4040
&#34;&#34;&#34;Apply copyright and licensing to all source files present in a project.

0 commit comments

Comments
 (0)