Skip to content

Commit 28ffe74

Browse files
committed
chore: update xmake.lua, tooth.json and CHANGELOG.md
1 parent 924c9cd commit 28ffe74

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.5] - 2026-02-27
11+
12+
### Fixed
13+
14+
- Fixed crash on stop for Node.js engine
15+
- Fixed item.maxDamage [#349] (#354) @LWenK
16+
1017
## [0.17.4] - 2026-02-24
1118

1219
### Changed
@@ -1164,9 +1171,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11641171
[#332]: https://github.com/LiteLDev/LegacyScriptEngine/issues/332
11651172
[#339]: https://github.com/LiteLDev/LegacyScriptEngine/issues/339
11661173
[#348]: https://github.com/LiteLDev/LegacyScriptEngine/issues/348
1174+
[#349]: https://github.com/LiteLDev/LegacyScriptEngine/issues/349
11671175
[#353]: https://github.com/LiteLDev/LegacyScriptEngine/issues/353
11681176

1169-
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.17.4...HEAD
1177+
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.17.5...HEAD
1178+
[0.17.5]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.17.4...v0.17.5
11701179
[0.17.4]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.17.3...v0.17.4
11711180
[0.17.3]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.17.2...v0.17.3
11721181
[0.17.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.17.1...v0.17.2

tooth.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"format_version": 3,
33
"format_uuid": "289f771f-2c9a-4d73-9f3f-8492495a924d",
44
"tooth": "github.com/LiteLDev/LegacyScriptEngine",
5-
"version": "0.17.4",
5+
"version": "0.17.5",
66
"info": {
77
"name": "LegacyScriptEngine",
88
"description": "A plugin engine for running LLSE plugins on LeviLamina",

xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ add_rules("mode.debug", "mode.release")
33
add_repositories("levimc-repo " .. (get_config("levimc_repo") or "https://github.com/LiteLDev/xmake-repo.git"))
44

55
if is_config("target_type", "server") then
6-
add_requires("levilamina 1.9.5", {configs = {target_type = "server"}})
6+
add_requires("levilamina 1.9.6", {configs = {target_type = "server"}})
77
else
8-
add_requires("levilamina 1.9.5", {configs = {target_type = "client"}})
8+
add_requires("levilamina 1.9.6", {configs = {target_type = "client"}})
99
end
1010

1111
add_requires("levibuildscript")

0 commit comments

Comments
 (0)