diff --git a/docs/LOOT Readme.html b/docs/LOOT Readme.html
index 4bc70141..489209f1 100644
--- a/docs/LOOT Readme.html
+++ b/docs/LOOT Readme.html
@@ -536,6 +536,15 @@ A copy of the license is included in the file named "GNU FDL v1.3.txt".Version History
Only program history is recorded here. A full history of masterlist changes may be viewed by browsing the GitHub repositories.
+
0.8.1 - 27 September 2015
+
+ - Fixed crash when loading plugins due to lack of thread safety.
+ - Fixed masterlist updater and validator not checking for valid condition and regex syntax.
+ - Check for safe file paths when parsing conditions.
+ - Updated Chinese translation.
+ - Updated Boost (1.59.0), libgit2 (0.23.2) and CEF (branch 2454) dependencies. This fixes the masterlist updater not working correctly for Windows Vista users.
+
+
0.8.0 - 22 July 2015
- Fixed
Cannot read property 'push' of undefined
errors when sorting.
diff --git a/scripts/installer.iss b/scripts/installer.iss
index 722f9037..d6011047 100644
--- a/scripts/installer.iss
+++ b/scripts/installer.iss
@@ -3,7 +3,7 @@
; be displayed correctly.
#define MyAppName "LOOT"
-#define MyAppVersion "0.8.0"
+#define MyAppVersion "0.8.1"
#define MyAppPublisher "LOOT Team"
#define MyAppURL "http://loot.github.io"
#define MyAppExeName "LOOT.exe"
diff --git a/src/api/api.h b/src/api/api.h
index c907c2f3..23dd3c6f 100644
--- a/src/api/api.h
+++ b/src/api/api.h
@@ -25,7 +25,7 @@
/**
* @mainpage
* @author WrinklyNinja
- * @version 0.8.0
+ * @version 0.8.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
@@ -61,20 +61,38 @@
* "docs/licenses/Licenses.txt" file.
*
* @section history_sec Version History
+ * ## 0.8.1 - 27 September 2015*
+ *
+ * * Fixed crash when loading plugins due to lack of thread safety.
+ * * Fixed masterlist updater and validator not checking for valid
+ * condition and regex syntax.
+ * * Check for safe file paths when parsing conditions.
+ * * Updated Boost (1.59.0), libgit2 (0.23.2) and CEF (branch 2454)
+ * dependencies. This fixes the masterlist updater not working
+ * correctly for Windows Vista users.
+ *
* ## 0.8.0 - *22 July 2015*
*
- * * Fixed many miscellaneous bugs, including initialisation crashes and incorrect metadata input/output handling.
- * * Fixed LOOT silently discarding some non-unique metadata: an error will now occur when loading or attempting to apply such metadata.
- * * Fixed and improved LOOT's version comparison behaviour for a wide variety of version string formats. This involved removing LOOT's usage of the Alphanum code library.
- * * Improved plugin loading performance for computers with weaker multithreading capabilities (eg. non-hyperthreaded dual-core or single-core CPUs).
+ * * Fixed many miscellaneous bugs, including initialisation crashes and
+ * incorrect metadata input/output handling.
+ * * Fixed LOOT silently discarding some non-unique metadata: an error
+ * will now occur when loading or attempting to apply such metadata.
+ * * Fixed and improved LOOT's version comparison behaviour for a wide
+ * variety of version string formats. This involved removing LOOT's
+ * usage of the Alphanum code library.
+ * * Improved plugin loading performance for computers with weaker
+ * multithreading capabilities (eg. non-hyperthreaded dual-core or
+ * single-core CPUs).
* * LOOT no longer outputs validity warnings for inactive plugins.
- * * Metadata syntax support changes, see the metadata syntax document for details.
+ * * Metadata syntax support changes, see the metadata syntax document
+ * for details.
* * Updated libgit2 to v0.23.0.
*
* ## 0.7.1 - *22 June 2015*
*
* * Fixed "No existing load order position" errors when sorting.
- * * Fixed output of Bash Tag removal suggestions in `loot_write_minimal_list()`.
+ * * Fixed output of Bash Tag removal suggestions in
+ * `loot_write_minimal_list()`.
*
* ## 0.7.0 - *20 May 2015*
*
diff --git a/src/backend/globals.cpp.in b/src/backend/globals.cpp.in
index 4c6e067e..ef1e68db 100644
--- a/src/backend/globals.cpp.in
+++ b/src/backend/globals.cpp.in
@@ -29,7 +29,7 @@ namespace loot {
//Version numbers.
const unsigned int g_version_major = 0;
const unsigned int g_version_minor = 8;
- const unsigned int g_version_patch = 0;
+ const unsigned int g_version_patch = 1;
// Build revision
const char * g_build_revision = "@GIT_COMMIT_STRING@";
diff --git a/src/resource.rc b/src/resource.rc
index 80a516d1..90687ba1 100644
--- a/src/resource.rc
+++ b/src/resource.rc
@@ -1,7 +1,7 @@
#include "gui/resource.h"
1 VERSIONINFO
-FILEVERSION 0, 8, 0, 0
-PRODUCTVERSION 0, 8, 0, 0
+FILEVERSION 0, 8, 1, 0
+PRODUCTVERSION 0, 8, 1, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
@@ -9,9 +9,9 @@ BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
-VALUE "FileVersion", "0.8.0"
+VALUE "FileVersion", "0.8.1"
VALUE "LegalCopyright", "Copyright (C) 2013-2015 WrinklyNinja"
-VALUE "ProductVersion", "0.8.0"
+VALUE "ProductVersion", "0.8.1"
END
END
BLOCK "VarFileInfo"