diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 7f7f15e8..e5ed8c44 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,21 @@ Version History *************** +0.18.2 - 2022-10-11 +=================== + +Fixed +----- + +- libloot will now use the correct local app data path for the Epic Games Store + distribution of Skyrim Special Edition when no local app data path is passed + to :cpp:any:`loot::CreateGameHandle()`. Via libloadorder. + +Changed +------- + +- Updated libloadorder to v13.3.0. + 0.18.1 - 2022-10-01 =================== diff --git a/include/loot/loot_version.h b/include/loot/loot_version.h index b9d81aa7..15441a13 100644 --- a/include/loot/loot_version.h +++ b/include/loot/loot_version.h @@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0; inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 18; /** @brief libloot's patch version number. */ -inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1; +inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 2; /** * @brief Get the library version. diff --git a/src/api/resource.rc b/src/api/resource.rc index 76108c9f..8cfd7d31 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 18, 1, 0 -PRODUCTVERSION 0, 18, 1, 0 +FILEVERSION 0, 18, 2, 0 +PRODUCTVERSION 0, 18, 2, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.18.1" +VALUE "FileVersion", "0.18.2" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.18.1" +VALUE "ProductVersion", "0.18.2" END END BLOCK "VarFileInfo"