Skip to content

Commit 356749d

Browse files
committed
Update changelog and version for 0.27.0
1 parent f078c08 commit 356749d

File tree

4 files changed

+49
-7
lines changed

4 files changed

+49
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ endif()
419419
# Install
420420
########################################
421421

422-
set(LIBLOOT_VERSION "0.26.3")
422+
set(LIBLOOT_VERSION "0.27.0")
423423

424424
set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
425425
set_property(TARGET loot PROPERTY SOVERSION 0)

docs/api/changelog.rst

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
22
Version History
33
***************
44

5+
0.27.0 - 2025-06-08
6+
===================
7+
8+
Added
9+
-----
10+
11+
- :cpp:any:`loot::PluginNotLoadedError`, which is thrown when trying to sort a
12+
load order that contains a plugin that hasn't been loaded, or when trying to
13+
load a Morrowind, OpenMW or Starfield plugin that has a master that has not
14+
been loaded.
15+
16+
Changed
17+
-------
18+
19+
- Windows builds that are built using MSVC (including official release builds)
20+
are now built with the ``/GL`` flag to enable whole-program optimisation
21+
(including link-time optimisation).
22+
- Official Windows builds are now built using MSVC 2022, so they now require the
23+
MSVC 2022 redistributable to be installed.
24+
25+
Removed
26+
-------
27+
28+
- ``LogLevel::Fatal`` as it was never used.
29+
- ``ConditionalMetadata``, which was the parent class of :cpp:any:`loot::File`,
30+
:cpp:any:`loot::Message` and :cpp:any:`loot::Tag`. Its ``GetCondition()``
31+
member function has been moved to those child classes. There is no direct
32+
replacement for its ``IsConditional()`` member function.
33+
- ``FileAccessError`` and ``ConditionSyntaxError``: ``std::runtime_error``
34+
exceptions are thrown instead.
35+
- ``loot_condition_interpreter_category()`` as the error category it returned is
36+
no longer used.
37+
- ``libloadorder_category()``, as errors reported by libloadorder are now thrown
38+
as ``std::runtime_error`` exceptions instead of ``std::system_error``
39+
exceptions.
40+
- ``esplugin_category()``, as errors reported by esplugin are now thrown as
41+
either :cpp:any:`loot::PluginNotLoadedError` or ``std::runtime_error``
42+
exceptions instead of ``std::system_error`` exceptions.
43+
- Support for the old Boost-style (e.g. ``%1%``) message placeholder syntax that
44+
was replaced in the v0.21 metadata syntax by the curly brace syntax (e.g.
45+
``{0}``).
46+
547
0.26.3 - 2025-05-28
648
===================
749

include/loot/loot_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ namespace loot {
3434
inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
3535

3636
/** @brief libloot's minor version number. */
37-
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 26;
37+
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 27;
3838

3939
/** @brief libloot's patch version number. */
40-
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 3;
40+
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0;
4141

4242
/**
4343
* @brief Get the library version.

src/api/resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include <windows.h>
33

44
1 VERSIONINFO
5-
FILEVERSION 0, 26, 3, 0
6-
PRODUCTVERSION 0, 26, 3, 0
5+
FILEVERSION 0, 27, 0, 0
6+
PRODUCTVERSION 0, 27, 0, 0
77
FILEOS VOS__WINDOWS32
88
FILETYPE VFT_DLL
99
BEGIN
@@ -13,12 +13,12 @@ BLOCK "040904b0"
1313
BEGIN
1414
VALUE "CompanyName", "LOOT"
1515
VALUE "FileDescription", "Library providing LOOT's core functionality"
16-
VALUE "FileVersion", "0.26.3"
16+
VALUE "FileVersion", "0.27.0"
1717
VALUE "InternalName", "loot"
1818
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
1919
VALUE "OriginalFilename", "loot.dll"
2020
VALUE "ProductName", "LOOT"
21-
VALUE "ProductVersion", "0.26.3"
21+
VALUE "ProductVersion", "0.27.0"
2222
END
2323
END
2424
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)