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.
This commit is contained in:
Kody Stribrny 2024-12-02 11:29:36 -08:00 committed by GitHub
parent 682f0515c9
commit 974351fe4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ def update_manifest_file(new_version_number):
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')

View file

@ -1,4 +1,4 @@
name : "FreeRTOS-Kernel"
version: "v11.0.1+"
version: "V11.0.1+"
description: "FreeRTOS Kernel."
license: "MIT"