diff --git a/include/loot/api.h b/include/loot/api.h index 3f159488..81903b73 100644 --- a/include/loot/api.h +++ b/include/loot/api.h @@ -25,7 +25,7 @@ /** * @mainpage * @author WrinklyNinja - * @version 0.9.0 + * @version 0.9.1 * @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/package.json b/package.json index 17a51b39..710aaefc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "loot", "author": "Oliver Hamlet ", - "version": "0.9.0", + "version": "0.9.1", "license": "GPL-3.0", "repository": { "type": "git", diff --git a/scripts/installer.iss b/scripts/installer.iss index 439fa2b6..ece02591 100644 --- a/scripts/installer.iss +++ b/scripts/installer.iss @@ -3,7 +3,7 @@ ; be displayed correctly. #define MyAppName "LOOT" -#define MyAppVersion "0.9.0" +#define MyAppVersion "0.9.1" #define MyAppPublisher "LOOT Team" #define MyAppURL "http://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 8609e161..5c84c54b 100644 --- a/src/backend/app/loot_version.cpp.in +++ b/src/backend/app/loot_version.cpp.in @@ -27,6 +27,6 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 9; - const unsigned int LootVersion::patch = 0; + const unsigned int LootVersion::patch = 1; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; } diff --git a/src/resource.rc b/src/resource.rc index 98730a00..894cb766 100644 --- a/src/resource.rc +++ b/src/resource.rc @@ -1,7 +1,7 @@ #include "gui/resource.h" 1 VERSIONINFO -FILEVERSION 0, 9, 0, 0 -PRODUCTVERSION 0, 9, 0, 0 +FILEVERSION 0, 9, 1, 0 +PRODUCTVERSION 0, 9, 1, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -9,9 +9,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.9.0" +VALUE "FileVersion", "0.9.1" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.9.0" +VALUE "ProductVersion", "0.9.1" END END BLOCK "VarFileInfo"