Update changelog and version for 0.22.4 release

This commit is contained in:
Oliver Hamlet
2024-05-03 07:15:26 +01:00
parent 63b5bb7b02
commit 03baecec4c
4 changed files with 44 additions and 6 deletions
+1 -1
View File
@@ -398,7 +398,7 @@ endif()
# Install
########################################
set(LIBLOOT_VERSION "0.22.3")
set(LIBLOOT_VERSION "0.22.4")
set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
set_property(TARGET loot PROPERTY SOVERSION 0)
+38
View File
@@ -2,6 +2,44 @@
Version History
***************
0.22.4 - 2024-05-03
===================
Added
-----
- Support Fallout 4 installs from the Epic Games Store.
- Support for Fallout 4's new BA2 versions.
- A ``LIBLOOT_BUILD_TESTS`` CMake option that defaults to ``ON`` and allows you
to disable building tests and their dependencies.
- A ``LIBLOOT_INSTALL_DOCS`` CMake option that defaults to ``ON`` and allows you
to skip installing the docs.
- ``ESPLUGIN_URL``, ``ESPLUGIN_HASH``, ``LIBLOADORDER_URL``,
``LIBLOADORDER_HASH``, ``LOOT_CONDITION_INTERPRETER_URL`` and
``LOOT_CONDITION_INTERPRETER_HASH`` CMake variables for overriding the URLs
and archive hashes used to fetch esplugin, libloadorder and
loot-condition-interpreter.
Changed
-------
- It's now possible to use existing builds of Google Test, spdlog and yaml-cpp
that CMake can find installed.
- The build archives now include the necessary CMake config to be found by
CMake's ``FindPackage``.
- The build archives produced by CPack now follow the GNU directory structure
(e.g. ``bin``, ``include``, ``lib``, ``share``).
- Updated esplugin to v5.0.1.
- Updated libloadorder v16.0.0.
- Updated loot-condition-interpreter to v4.0.0.
- Updated spdlog to v1.14.1.
- Updated yaml-cpp to v0.8.0+merge-key-support.2.
Removed
-------
- The Linux build no longer links to ``stdc++fs``.
0.22.3 - 2023-12-06
===================
+1 -1
View File
@@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 22;
/** @brief libloot's patch version number. */
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 3;
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 4;
/**
* @brief Get the library version.
+4 -4
View File
@@ -2,8 +2,8 @@
#include <windows.h>
1 VERSIONINFO
FILEVERSION 0, 22, 3, 0
PRODUCTVERSION 0, 22, 3, 0
FILEVERSION 0, 22, 4, 0
PRODUCTVERSION 0, 22, 4, 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.22.3"
VALUE "FileVersion", "0.22.4"
VALUE "InternalName", "loot"
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
VALUE "OriginalFilename", "loot.dll"
VALUE "ProductName", "LOOT"
VALUE "ProductVersion", "0.22.3"
VALUE "ProductVersion", "0.22.4"
END
END
BLOCK "VarFileInfo"