Skip to content

Commit

Permalink
Update manifest to use 'V' (#1201)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kstribrnAmzn authored Dec 2, 2024
1 parent 682f051 commit 974351f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/manifest_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name : "FreeRTOS-Kernel"
version: "v11.0.1+"
version: "V11.0.1+"
description: "FreeRTOS Kernel."
license: "MIT"

0 comments on commit 974351f

Please sign in to comment.