diff --git a/CMakeLists.txt b/CMakeLists.txt index 21a33599..00dfb580 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -423,7 +423,7 @@ endif() # Install ######################################## -set(LIBLOOT_VERSION "0.25.3") +set(LIBLOOT_VERSION "0.25.4") set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION}) set_property(TARGET loot PROPERTY SOVERSION 0) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index abc0f657..055070bd 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,28 @@ Version History *************** +0.25.4 - 2025-03-04 +=================== + +Fixed +----- + +- The changes to groups handling during sorting that were introduced in v0.25.0 + included an optimisation that skipped processing groups that had already been + processed, but it prematurely skipped groups when the defined groups included + one that loaded directly after more than one other group. +- :cpp:any:`loot::GameInterface::LoadPlugins()` added loaded plugins to the + internal cache before resolving their record IDs, so a failure to do the + latter could result in valid loaded plugin state being replaced by invalid + plugin state. The cache is now only updated after record IDs have been + successfully resolved. +- A couple of misleading log statements about edges being skipped during sorting + to avoid cycles were also written when edges were skipped due to a path + between the plugins in question already existing. +- The documentation for :cpp:any:`loot::SetLoggingCallback()` incorrectly stated + that libloot would print mesages to the console until that function was + called. + 0.25.3 - 2025-02-23 =================== diff --git a/include/loot/loot_version.h b/include/loot/loot_version.h index 65e8916d..d7be72a2 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 = 25; /** @brief libloot's patch version number. */ -inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 3; +inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 4; /** * @brief Get the library version. diff --git a/src/api/resource.rc b/src/api/resource.rc index 3332aba2..8387804b 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 25, 3, 0 -PRODUCTVERSION 0, 25, 3, 0 +FILEVERSION 0, 25, 4, 0 +PRODUCTVERSION 0, 25, 4, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_DLL BEGIN @@ -13,12 +13,12 @@ BLOCK "040904b0" BEGIN VALUE "CompanyName", "LOOT" VALUE "FileDescription", "Library providing LOOT's core functionality" -VALUE "FileVersion", "0.25.3" +VALUE "FileVersion", "0.25.4" VALUE "InternalName", "loot" VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet" VALUE "OriginalFilename", "loot.dll" VALUE "ProductName", "LOOT" -VALUE "ProductVersion", "0.25.3" +VALUE "ProductVersion", "0.25.4" END END BLOCK "VarFileInfo"