Skip to content

Commit af66e84

Browse files
committed
chore: update CHANGELOG.md and tooth.json
1 parent e34fb51 commit af66e84

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.13.0] - 2025-07-15
11+
12+
### Changed
13+
14+
- Supported LeviLamina 1.4.0 @xiaoqch
15+
16+
### Fixed
17+
18+
- Ensured onUnload is invoked prior to engine cleanup @xiaoqch
19+
1020
## [0.12.1] - 2025-07-13
1121

1222
### Added
@@ -978,7 +988,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
978988
[#300]: https://github.com/LiteLDev/LegacyScriptEngine/issues/300
979989
[#303]: https://github.com/LiteLDev/LegacyScriptEngine/issues/303
980990

981-
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.1...HEAD
991+
[Unreleased]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.13.0...HEAD
992+
[0.13.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.1...v0.13.0
982993
[0.12.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.12.0...v0.12.1
983994
[0.12.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.3...v0.12.0
984995
[0.11.3]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.11.2...v0.11.3

tooth.json

Lines changed: 13 additions & 13 deletions
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.12.1",
5+
"version": "0.13.0",
66
"info": {
77
"name": "LegacyScriptEngine",
88
"description": "A plugin engine for running LLSE plugins on LeviLamina",
@@ -25,9 +25,9 @@
2525
"label": "nodejs",
2626
"platform": "win-x64",
2727
"dependencies": {
28-
"github.com/LiteLDev/LegacyRemoteCall": "0.12.*",
29-
"github.com/LiteLDev/LegacyParticleAPI": "0.12.*",
30-
"github.com/LiteLDev/LegacyMoney": "0.12.*",
28+
"github.com/LiteLDev/LegacyRemoteCall": "0.13.*",
29+
"github.com/LiteLDev/LegacyParticleAPI": "0.13.*",
30+
"github.com/LiteLDev/LegacyMoney": "0.13.*",
3131
"gitea.litebds.com/ShrBox/7-zip": "24.*"
3232
},
3333
"assets": [
@@ -69,9 +69,9 @@
6969
"label": "quickjs",
7070
"platform": "win-x64",
7171
"dependencies": {
72-
"github.com/LiteLDev/LegacyRemoteCall": "0.12.*",
73-
"github.com/LiteLDev/LegacyParticleAPI": "0.12.*",
74-
"github.com/LiteLDev/LegacyMoney": "0.12.*"
72+
"github.com/LiteLDev/LegacyRemoteCall": "0.13.*",
73+
"github.com/LiteLDev/LegacyParticleAPI": "0.13.*",
74+
"github.com/LiteLDev/LegacyMoney": "0.13.*"
7575
},
7676
"assets": [
7777
{
@@ -93,9 +93,9 @@
9393
"label": "lua",
9494
"platform": "win-x64",
9595
"dependencies": {
96-
"github.com/LiteLDev/LegacyRemoteCall": "0.12.*",
97-
"github.com/LiteLDev/LegacyParticleAPI": "0.12.*",
98-
"github.com/LiteLDev/LegacyMoney": "0.12.*"
96+
"github.com/LiteLDev/LegacyRemoteCall": "0.13.*",
97+
"github.com/LiteLDev/LegacyParticleAPI": "0.13.*",
98+
"github.com/LiteLDev/LegacyMoney": "0.13.*"
9999
},
100100
"assets": [
101101
{
@@ -117,9 +117,9 @@
117117
"label": "python",
118118
"platform": "win-x64",
119119
"dependencies": {
120-
"github.com/LiteLDev/LegacyRemoteCall": "0.12.*",
121-
"github.com/LiteLDev/LegacyParticleAPI": "0.12.*",
122-
"github.com/LiteLDev/LegacyMoney": "0.12.*"
120+
"github.com/LiteLDev/LegacyRemoteCall": "0.13.*",
121+
"github.com/LiteLDev/LegacyParticleAPI": "0.13.*",
122+
"github.com/LiteLDev/LegacyMoney": "0.13.*"
123123
},
124124
"assets": [
125125
{

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 https://github.com/LiteLDev/xmake-repo.git")
44

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

1111
add_requires("levibuildscript")

0 commit comments

Comments
 (0)