Skip to content

Commit

Permalink
Update changelog and version for 0.23.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Aug 24, 2024
1 parent 1d2ebf5 commit e9321ae
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
23 changes: 23 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===================

Expand Down
2 changes: 2 additions & 0 deletions docs/api/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion include/loot/loot_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions src/api/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit e9321ae

Please sign in to comment.