Skip to content

Commit

Permalink
Update changelog and version for 0.22.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed May 3, 2024
1 parent 63b5bb7 commit 03baece
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
38 changes: 38 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===================

Expand Down
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 = 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.
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, 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
Expand All @@ -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"
Expand Down

0 comments on commit 03baece

Please sign in to comment.