diff --git a/.github/scripts/update_version.py b/.github/scripts/update_version.py index 635cf8268..9413629eb 100644 --- a/.github/scripts/update_version.py +++ b/.github/scripts/update_version.py @@ -11,7 +11,7 @@ patch_number = line_split[2].split("'")[0].split('"')[0] # Increment patch number -patch_number = str(int(patch_number) + 1) + "'" +patch_number = str(int(patch_number) + 1) + '"' new_line = line_split[0] + "." + line_split[1] + "." + patch_number