Skip to content

Commit 927c708

Browse files
committed
Update version and changelog for v0.28.1
1 parent a677041 commit 927c708

File tree

12 files changed

+40
-19
lines changed

12 files changed

+40
-19
lines changed

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.0"
41+
version = "0.28.1"
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.0")
8+
project(libloot VERSION "0.28.1")
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 = 0;
40+
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1;
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, 0, 0
6-
PRODUCTVERSION 0, 28, 0, 0
5+
FILEVERSION 0, 28, 1, 0
6+
PRODUCTVERSION 0, 28, 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.28.0"
16+
VALUE "FileVersion", "0.28.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.28.0"
21+
VALUE "ProductVersion", "0.28.1"
2222
END
2323
END
2424
BLOCK "VarFileInfo"

docs/api/changelog.rst

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

5+
0.28.1 - 2025-08-11
6+
===================
7+
8+
Fixed
9+
-----
10+
11+
- The lifetime of :cpp:any:`loot::PluginInterface` pointers did not match their
12+
documented lifetimes in v0.28.0.
13+
- :cpp:any:`loot::CyclicInteractionError::GetCycle()` did not return the correct
14+
cycle data in v0.28.0.
15+
16+
Changed
17+
-------
18+
19+
- The error message for an invalid plugin metadata name regex now includes the
20+
invalid value.
21+
- The error messages of ``std::invalid_argument`` errors now include the full
22+
chain of error details instead of just the top-level error message.
23+
- The Rust API Reference page of this documentation now links to the docs.rs
24+
page for the latest version of libloot.
25+
526
0.28.0 - 2025-08-02
627
===================
728

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.0"
3+
version = "0.28.1"
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.0",
3+
"version": "0.28.1",
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.0",
3+
"version": "0.28.1",
44
"os": [
55
"win32"
66
],

0 commit comments

Comments
 (0)