diff --git a/include/loot/api.h b/include/loot/api.h index 82a3b523..6b5c1bcf 100644 --- a/include/loot/api.h +++ b/include/loot/api.h @@ -25,7 +25,7 @@ /** * @mainpage * @author WrinklyNinja - * @version 0.8.1 + * @version 0.9.0 * @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 bd33a2be..17a51b39 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "loot", "author": "Oliver Hamlet ", - "version": "0.8.1", + "version": "0.9.0", "license": "GPL-3.0", "repository": { "type": "git", diff --git a/scripts/installer.iss b/scripts/installer.iss index 01d05dd5..8eda1b6a 100644 --- a/scripts/installer.iss +++ b/scripts/installer.iss @@ -3,7 +3,7 @@ ; be displayed correctly. #define MyAppName "LOOT" -#define MyAppVersion "0.8.1" +#define MyAppVersion "0.9.0" #define MyAppPublisher "LOOT Team" #define MyAppURL "http://loot.github.io" #define MyAppExeName "LOOT.exe" diff --git a/src/backend/globals.cpp.in b/src/backend/globals.cpp.in index 7b2e7985..5e3d579e 100644 --- a/src/backend/globals.cpp.in +++ b/src/backend/globals.cpp.in @@ -28,8 +28,8 @@ namespace loot { //Version numbers. const unsigned int g_version_major = 0; - const unsigned int g_version_minor = 8; - const unsigned int g_version_patch = 1; + const unsigned int g_version_minor = 9; + const unsigned int g_version_patch = 0; // Build revision const char * g_build_revision = "@GIT_COMMIT_STRING@"; diff --git a/src/resource.rc b/src/resource.rc index 425c55af..98730a00 100644 --- a/src/resource.rc +++ b/src/resource.rc @@ -1,7 +1,7 @@ #include "gui/resource.h" 1 VERSIONINFO -FILEVERSION 0, 8, 1, 0 -PRODUCTVERSION 0, 8, 1, 0 +FILEVERSION 0, 9, 0, 0 +PRODUCTVERSION 0, 9, 0, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -9,9 +9,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.8.1" +VALUE "FileVersion", "0.9.0" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.8.1" +VALUE "ProductVersion", "0.9.0" END END BLOCK "VarFileInfo"