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.
pull/1207/head
Kody Stribrny 2 months ago committed by GitHub
parent 682f0515c9
commit 974351fe4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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')

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

Loading…
Cancel
Save