Skip to content

Commit

Permalink
Update changelog and version for 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Sep 13, 2024
1 parent 6726532 commit d861e1a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ endif()
# Install
########################################

set(LIBLOOT_VERSION "0.23.1")
set(LIBLOOT_VERSION "0.24.0")

set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
set_property(TARGET loot PROPERTY SOVERSION 0)
Expand Down
24 changes: 24 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@
Version History
***************

0.24.0 - Unreleased
===================

Added
-----

- Support for Starfield's blueprint master plugin type.
- :cpp:any:`loot::PluginInterface::IsBlueprintPlugin()`
- :cpp:any:`loot::EdgeType::blueprintMaster`
- :cpp:any:`loot::loot_condition_interpreter_category()`, which returns the
``std::error_category`` that is used when throwing loot-condition-interpreter
errors as :cpp:any:`loot::ConditionSyntaxError` exceptions.

Changed
-------

- Blueprint master plugins are now sorted after all other plugins, to match
Starfield's behaviour. If a non-blueprint-master plugin has a blueprint master
as one of its masters, sorting logs a warning but does not fail. Other cyclic
dependencies (e.g. involving requirement metadata) will cause sorting to fail.
- :cpp:any:`loot::ConditionSyntaxError` now inherits from ``std::system_error``
- Updated esplugin to v6.1.0.
- Updated libloadorder to v18.0.0.

0.23.1 - 2024-08-24
===================

Expand Down
4 changes: 2 additions & 2 deletions include/loot/loot_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ namespace loot {
inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;

/** @brief libloot's minor version number. */
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 23;
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 24;

/** @brief libloot's patch version number. */
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1;
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0;

/**
* @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, 1, 0
PRODUCTVERSION 0, 23, 1, 0
FILEVERSION 0, 24, 0, 0
PRODUCTVERSION 0, 24, 0, 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.1"
VALUE "FileVersion", "0.24.0"
VALUE "InternalName", "loot"
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
VALUE "OriginalFilename", "loot.dll"
VALUE "ProductName", "LOOT"
VALUE "ProductVersion", "0.23.1"
VALUE "ProductVersion", "0.24.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit d861e1a

Please sign in to comment.