Update manifest to use 'V' (#1201)
Release tags use a capitalized V.
Our manifest tag is used by our SBOM
script to generate the URL and so
this needs to be capitalized to generate
a valid URL.
diff --git a/.github/scripts/manifest_updater.py b/.github/scripts/manifest_updater.py
index 684c7cb..fc2343d 100755
--- a/.github/scripts/manifest_updater.py
+++ b/.github/scripts/manifest_updater.py
@@ -11,7 +11,7 @@
for line in f:
line = line.strip()
if line.startswith('version'):
- updated_lines.append(f'version: "v{new_version_number}"\n')
+ updated_lines.append(f'version: "V{new_version_number}"\n')
else:
updated_lines.append(f'{line}\n')
diff --git a/manifest.yml b/manifest.yml
index ac13cb6..bd893f1 100644
--- a/manifest.yml
+++ b/manifest.yml
@@ -1,4 +1,4 @@
name : "FreeRTOS-Kernel"
-version: "v11.0.1+"
+version: "V11.0.1+"
description: "FreeRTOS Kernel."
license: "MIT"