diff --git a/Cargo.lock b/Cargo.lock index b643463d..0a54b496 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "libloot" -version = "0.26.2" +version = "0.26.3" dependencies = [ "crc32fast", "esplugin", @@ -565,7 +565,7 @@ dependencies = [ [[package]] name = "libloot-cpp" -version = "0.26.2" +version = "0.26.3" dependencies = [ "cxx", "cxx-build", @@ -576,7 +576,7 @@ dependencies = [ [[package]] name = "libloot-ffi-errors" -version = "0.26.2" +version = "0.26.3" dependencies = [ "esplugin", "libloadorder", @@ -586,7 +586,7 @@ dependencies = [ [[package]] name = "libloot-nodejs" -version = "0.26.2" +version = "0.26.3" dependencies = [ "libloot", "libloot-ffi-errors", @@ -597,7 +597,7 @@ dependencies = [ [[package]] name = "libloot-python" -version = "0.26.2" +version = "0.26.3" dependencies = [ "libloot", "libloot-ffi-errors", @@ -779,7 +779,7 @@ dependencies = [ [[package]] name = "parameterized-test" -version = "0.26.2" +version = "0.26.3" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index c233f4ae..886b559e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloot" -version = "0.26.2" +version = "0.26.3" edition = "2024" license = "GPL-3.0-or-later" diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 2f7af064..f59b24f6 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -239,7 +239,7 @@ endif() # Install ######################################## -set(LIBLOOT_VERSION "0.26.2") +set(LIBLOOT_VERSION "0.26.3") set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION}) set_property(TARGET loot PROPERTY SOVERSION 0) diff --git a/cpp/Cargo.toml b/cpp/Cargo.toml index caa0a5f9..772d14b5 100644 --- a/cpp/Cargo.toml +++ b/cpp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloot-cpp" -version = "0.26.2" +version = "0.26.3" edition = "2024" license = "GPL-3.0-or-later" diff --git a/cpp/docs/api/changelog.rst b/cpp/docs/api/changelog.rst index f4c3fbdf..35622741 100644 --- a/cpp/docs/api/changelog.rst +++ b/cpp/docs/api/changelog.rst @@ -2,6 +2,16 @@ Version History *************** +0.26.3 - 2025-05-28 +=================== + +Changed +------- + +- Reverted the change made in v0.26.2 to libloot's handling of Oblivion + Remastered master files, as it was too restrictive: libloot now once more + makes no distinction between them and non-master files. + 0.26.2 - 2025-05-13 =================== diff --git a/cpp/docs/pyproject.toml b/cpp/docs/pyproject.toml index f06f1144..09a705e9 100644 --- a/cpp/docs/pyproject.toml +++ b/cpp/docs/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "libloot-cpp-docs" -version = "0.26.2" +version = "0.26.3" requires-python = ">=3.11" dependencies = [ "breathe==4.36.0", diff --git a/cpp/include/loot/loot_version.h b/cpp/include/loot/loot_version.h index 8879af05..e2794ab4 100644 --- a/cpp/include/loot/loot_version.h +++ b/cpp/include/loot/loot_version.h @@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0; inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 26; /** @brief libloot's patch version number. */ -inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 2; +inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 3; /** * @brief Get the library version. diff --git a/cpp/src/api/resource.rc b/cpp/src/api/resource.rc index 0438b44f..95db62fb 100644 --- a/cpp/src/api/resource.rc +++ b/cpp/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 26, 2, 0 -PRODUCTVERSION 0, 26, 2, 0 +FILEVERSION 0, 26, 3, 0 +PRODUCTVERSION 0, 26, 3, 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.26.2" +VALUE "FileVersion", "0.26.3" VALUE "InternalName", "loot" VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet" VALUE "OriginalFilename", "loot.dll" VALUE "ProductName", "LOOT" -VALUE "ProductVersion", "0.26.2" +VALUE "ProductVersion", "0.26.3" END END BLOCK "VarFileInfo" diff --git a/ffi-errors/Cargo.toml b/ffi-errors/Cargo.toml index 1e4e5139..f78e54bc 100644 --- a/ffi-errors/Cargo.toml +++ b/ffi-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloot-ffi-errors" -version = "0.26.2" +version = "0.26.3" edition = "2024" license = "GPL-3.0-or-later" diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml index d4ae0408..53df7751 100644 --- a/nodejs/Cargo.toml +++ b/nodejs/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "libloot-nodejs" -version = "0.26.2" +version = "0.26.3" license = "GPL-3.0-or-later" [lib] diff --git a/nodejs/npm/linux-x64-gnu/package.json b/nodejs/npm/linux-x64-gnu/package.json index 971f5325..5932ae11 100644 --- a/nodejs/npm/linux-x64-gnu/package.json +++ b/nodejs/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "libloot-nodejs-linux-x64-gnu", - "version": "0.26.2", + "version": "0.26.3", "os": [ "linux" ], diff --git a/nodejs/npm/win32-x64-msvc/package.json b/nodejs/npm/win32-x64-msvc/package.json index 39d8b4c6..01560557 100644 --- a/nodejs/npm/win32-x64-msvc/package.json +++ b/nodejs/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "libloot-nodejs-win32-x64-msvc", - "version": "0.26.2", + "version": "0.26.3", "os": [ "win32" ], diff --git a/nodejs/package.json b/nodejs/package.json index 9c79a206..8b14605c 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "libloot-nodejs", - "version": "0.26.2", + "version": "0.26.3", "main": "index.js", "types": "index.d.ts", "napi": { diff --git a/parameterized-test/Cargo.toml b/parameterized-test/Cargo.toml index 68827200..615b966a 100644 --- a/parameterized-test/Cargo.toml +++ b/parameterized-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parameterized-test" -version = "0.26.2" +version = "0.26.3" edition = "2024" license = "MIT" diff --git a/python/Cargo.toml b/python/Cargo.toml index a66aef22..f93f7ed5 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libloot-python" -version = "0.26.2" +version = "0.26.3" edition = "2024" license = "GPL-3.0-or-later"