Skip to content

Commit f865167

Browse files
committed
Update changelog and version for 0.25.1
1 parent 50bd3ae commit f865167

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ endif()
423423
# Install
424424
########################################
425425

426-
set(LIBLOOT_VERSION "0.25.0")
426+
set(LIBLOOT_VERSION "0.25.1")
427427

428428
set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
429429
set_property(TARGET loot PROPERTY SOVERSION 0)

docs/api/changelog.rst

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
Version History
33
***************
44

5+
0.25.1 - 2025-02-03
6+
===================
7+
8+
Fixed
9+
-----
10+
11+
- :cpp:any:`loot::GameInterface::IsValidPlugin()` returned false for OpenMW
12+
``.omwscripts`` plugins.
13+
514
0.25.0 - 2025-02-02
615
===================
716

include/loot/loot_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
3737
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 25;
3838

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

4242
/**
4343
* @brief Get the library version.

src/api/resource.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include <windows.h>
33

44
1 VERSIONINFO
5-
FILEVERSION 0, 25, 0, 0
6-
PRODUCTVERSION 0, 25, 0, 0
5+
FILEVERSION 0, 25, 1, 0
6+
PRODUCTVERSION 0, 25, 1, 0
77
FILEOS VOS__WINDOWS32
88
FILETYPE VFT_DLL
99
BEGIN
@@ -13,12 +13,12 @@ BLOCK "040904b0"
1313
BEGIN
1414
VALUE "CompanyName", "LOOT"
1515
VALUE "FileDescription", "Library providing LOOT's core functionality"
16-
VALUE "FileVersion", "0.25.0"
16+
VALUE "FileVersion", "0.25.1"
1717
VALUE "InternalName", "loot"
1818
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
1919
VALUE "OriginalFilename", "loot.dll"
2020
VALUE "ProductName", "LOOT"
21-
VALUE "ProductVersion", "0.25.0"
21+
VALUE "ProductVersion", "0.25.1"
2222
END
2323
END
2424
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)