diff --git a/include/loot/api.h b/include/loot/api.h index 7f282968..8663bb51 100644 --- a/include/loot/api.h +++ b/include/loot/api.h @@ -25,7 +25,7 @@ /** * @mainpage * @author WrinklyNinja - * @version 0.9.1 + * @version 0.9.2 * @copyright * The LOOT API is distributed under the GNU General Public License v3.0. * For the full text of the license, see the "GNU GPL v3.txt" file diff --git a/scripts/installer.iss b/scripts/installer.iss index f3b569c4..10fc9636 100644 --- a/scripts/installer.iss +++ b/scripts/installer.iss @@ -3,7 +3,7 @@ ; be displayed correctly. #define MyAppName "LOOT" -#define MyAppVersion "0.9.1" +#define MyAppVersion "0.9.2" #define MyAppPublisher "LOOT Team" #define MyAppURL "https://loot.github.io" #define MyAppExeName "LOOT.exe" diff --git a/src/backend/app/loot_version.cpp.in b/src/backend/app/loot_version.cpp.in index e8687e84..3244bac9 100644 --- a/src/backend/app/loot_version.cpp.in +++ b/src/backend/app/loot_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 9; - const unsigned int LootVersion::patch = 1; + const unsigned int LootVersion::patch = 2; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; std::string LootVersion::string() { diff --git a/src/resource.rc b/src/resource.rc index 894cb766..eaa8e73d 100644 --- a/src/resource.rc +++ b/src/resource.rc @@ -1,7 +1,7 @@ #include "gui/resource.h" 1 VERSIONINFO -FILEVERSION 0, 9, 1, 0 -PRODUCTVERSION 0, 9, 1, 0 +FILEVERSION 0, 9, 2, 0 +PRODUCTVERSION 0, 9, 2, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -9,9 +9,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.9.1" +VALUE "FileVersion", "0.9.2" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.9.1" +VALUE "ProductVersion", "0.9.2" END END BLOCK "VarFileInfo"