diff --git a/scripts/set_version_number.py b/scripts/set_version_number.py index 767b6692..99b1fdb9 100644 --- a/scripts/set_version_number.py +++ b/scripts/set_version_number.py @@ -28,7 +28,7 @@ def update_resource_file(path, version): comma_separated_version = version.replace('.', ', ') replace_in_file(path, 'VERSION \d+, \d+, \d+', 'VERSION {}'.format(comma_separated_version)) - replace_in_file(path, 'Version", "\d+\.\d+\.\d+"', 'VERSION ", "{}"'.format(version)) + replace_in_file(path, 'Version", "\d+\.\d+\.\d+"', 'Version", "{}"'.format(version)) if __name__ == "__main__": parser = argparse.ArgumentParser(description = 'Set the LOOT API version number') diff --git a/src/api/resource.rc b/src/api/resource.rc index 7e5d600f..5aaee3a1 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVERSION ", "0.11.0" +VALUE "FileVersion", "0.13.8" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVERSION ", "0.11.0" +VALUE "ProductVersion", "0.13.8" END END BLOCK "VarFileInfo"