Skip to content

Commit ec06eee

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
2 parents b16d713 + 0911397 commit ec06eee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CI/update/stm32cube.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def applyBlePatch():
711711
def updateBleReadme(filepath, version):
712712
print(" Updating README.md in ble library")
713713
for line in fileinput.input(filepath, inplace=True):
714-
print(re.sub(r"v\d+.\d+.\d+", version, line), end="")
714+
print(re.sub(r"v\d+.\d+.\d+", f"v{version}", line), end="")
715715

716716

717717
def updateBleLibrary():
@@ -723,7 +723,7 @@ def updateBleLibrary():
723723
ble_path = repo_local_path / repo_ble_name / "src" / "utility" / "STM32Cube_FW"
724724
cube_version = cube_versions["WB"]
725725

726-
ble_commit_msg = f"Update STM32Cube_FW from Cube version {cube_version}"
726+
ble_commit_msg = f"chore: update STM32Cube_FW from Cube version {cube_version}"
727727

728728
for file in ble_file_list:
729729
file_path = Path(cube_path / file)

0 commit comments

Comments
 (0)