Skip to content

Commit 54604a0

Browse files
committed
Update version and changelog for v0.28.3
1 parent 88ef5a8 commit 54604a0

11 files changed

Lines changed: 31 additions & 17 deletions

File tree

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ lto = "thin"
3838
members = ["cpp", "ffi-errors", "nodejs", "array-parameterized-test", "python"]
3939

4040
[workspace.package]
41-
version = "0.28.2"
41+
version = "0.28.3"
4242
repository = "https://github.com/loot/libloot.git"
4343
edition = "2024"
4444
license = "GPL-3.0-or-later"

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ endif()
55
if(POLICY CMP0167)
66
cmake_policy(SET CMP0167 NEW)
77
endif()
8-
project(libloot VERSION "0.28.2")
8+
project(libloot VERSION "0.28.3")
99
include(CMakeDependentOption)
1010
include(CMakePackageConfigHelpers)
1111
include(GNUInstallDirs)

cpp/include/loot/loot_version.h

Lines changed: 1 addition & 1 deletion
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 = 28;
3838

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

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

cpp/src/api/resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include <windows.h>
33

44
1 VERSIONINFO
5-
FILEVERSION 0, 28, 2, 0
6-
PRODUCTVERSION 0, 28, 2, 0
5+
FILEVERSION 0, 28, 3, 0
6+
PRODUCTVERSION 0, 28, 3, 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.28.2"
16+
VALUE "FileVersion", "0.28.3"
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.28.2"
21+
VALUE "ProductVersion", "0.28.3"
2222
END
2323
END
2424
BLOCK "VarFileInfo"

docs/api/changelog.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
Version History
33
***************
44

5+
0.28.3 - 2025-10-22
6+
===================
7+
8+
Fixed
9+
-----
10+
11+
- Undefined symbols in the C++ wrapper when ``CXXFLAGS`` contains ``-flto``.
12+
- Dependency copyright notices in the documentation were not up to date, some
13+
dependencies were not listed, and some dev and build dependencies were listed.
14+
- The documentation unnecessarily included the Apache 2.0 license text.
15+
- The metadata syntax documentation included an outdated description of cycle
16+
avoidance when handling plugin group metadata, and incorrectly said that
17+
location metadata was not used by LOOT.
18+
519
0.28.2 - 2025-10-03
620
===================
721

docs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "libloot-docs"
3-
version = "0.28.2"
3+
version = "0.28.3"
44
requires-python = ">=3.11"
55
dependencies = [
66
"breathe==4.36.0",

docs/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libloot-nodejs-linux-x64-gnu",
3-
"version": "0.28.2",
3+
"version": "0.28.3",
44
"os": [
55
"linux"
66
],

nodejs/npm/win32-x64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libloot-nodejs-win32-x64-msvc",
3-
"version": "0.28.2",
3+
"version": "0.28.3",
44
"os": [
55
"win32"
66
],

0 commit comments

Comments
 (0)