diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index b2c572b5..6c5ec630 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,15 @@ Version History *************** +0.17.0 - 2021-11-13 +=================== + +Fixed +----- + +- Out-of-bounds array access that could occur in some situations and which could + cause crashes in Linux builds. + 0.17.0 - 2021-09-24 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index e9cc654d..1799d7a4 100644 --- a/src/api/loot_version.cpp.in +++ b/src/api/loot_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 17; -const unsigned int LootVersion::patch = 0; +const unsigned int LootVersion::patch = 1; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; LOOT_API std::string LootVersion::GetVersionString() { diff --git a/src/api/resource.rc b/src/api/resource.rc index 1558d0bd..2f9c22b1 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 17, 0, 0 -PRODUCTVERSION 0, 17, 0, 0 +FILEVERSION 0, 17, 1, 0 +PRODUCTVERSION 0, 17, 1, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.17.0" +VALUE "FileVersion", "0.17.1" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.17.0" +VALUE "ProductVersion", "0.17.1" END END BLOCK "VarFileInfo"