Update changelog and version for 0.23.1 release

This commit is contained in:
Oliver Hamlet
2024-08-24 11:28:30 +01:00
parent 1d2ebf5572
commit e9321ae544
5 changed files with 31 additions and 6 deletions
+1 -1
View File
@@ -408,7 +408,7 @@ endif()
# Install
########################################
set(LIBLOOT_VERSION "0.23.0")
set(LIBLOOT_VERSION "0.23.1")
set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
set_property(TARGET loot PROPERTY SOVERSION 0)
+23
View File
@@ -2,6 +2,29 @@
Version History
***************
0.23.1 - 2024-08-24
===================
Added
-----
- :cpp:any:`loot::esplugin_category()`, which returns the
``std::error_category`` that is used when throwing esplugin errors as
exceptions.
Fixed
-----
- Inaccurate log messages when getting early loading plugins.
Changed
-------
- When an esplugin function returns an error, it is now thrown as a
``std::system_error`` using the error category returned by
:cpp:any:`loot::esplugin_category()`, instead of as a
:cpp:any:`loot::FileAccessError`.
0.23.0 - 2024-06-29
===================
+2
View File
@@ -108,4 +108,6 @@ Error Categories
LOOT uses error category objects to identify errors with codes that originate in
lower-level libraries.
.. doxygenfunction:: loot::esplugin_category
.. doxygenfunction:: loot::libloadorder_category
+1 -1
View File
@@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 23;
/** @brief libloot's patch version number. */
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0;
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1;
/**
* @brief Get the library version.
+4 -4
View File
@@ -2,8 +2,8 @@
#include <windows.h>
1 VERSIONINFO
FILEVERSION 0, 23, 0, 0
PRODUCTVERSION 0, 23, 0, 0
FILEVERSION 0, 23, 1, 0
PRODUCTVERSION 0, 23, 1, 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.23.0"
VALUE "FileVersion", "0.23.1"
VALUE "InternalName", "loot"
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
VALUE "OriginalFilename", "loot.dll"
VALUE "ProductName", "LOOT"
VALUE "ProductVersion", "0.23.0"
VALUE "ProductVersion", "0.23.1"
END
END
BLOCK "VarFileInfo"