Skip to content

Commit 7cc499c

Browse files
committed
feat: support LeviLamina 1.7.0
1 parent f3f89d9 commit 7cc499c

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.11.0] - 2025-11-04
11+
12+
### Changed
13+
14+
- Supported LeviLamina 1.7.0
15+
1016
## [0.10.0] - 2025-10-04
1117

1218
### Changed
@@ -167,7 +173,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
167173

168174
- Fixed some bugs
169175

170-
[Unreleased]: https://github.com/LiteLDev/LeviOptimize/compare/v0.10.0...HEAD
176+
[Unreleased]: https://github.com/LiteLDev/LeviOptimize/compare/v0.11.0...HEAD
177+
[0.11.0]: https://github.com/LiteLDev/LeviOptimize/compare/v0.10.0...v0.11.0
171178
[0.10.0]: https://github.com/LiteLDev/LeviOptimize/compare/v0.9.0...v0.10.0
172179
[0.9.0]: https://github.com/LiteLDev/LeviOptimize/compare/v0.8.0...v0.9.0
173180
[0.8.0]: https://github.com/LiteLDev/LeviOptimize/compare/v0.7.0...v0.8.0

tooth.json

Lines changed: 2 additions & 2 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/LeviOptimize",
5-
"version": "0.10.0",
5+
"version": "0.11.0",
66
"info": {
77
"name": "LeviOptimize",
88
"description": "A performance optimization mod for Minecraft Bedrock Server",
@@ -16,7 +16,7 @@
1616
{
1717
"platform": "win-x64",
1818
"dependencies": {
19-
"github.com/LiteLDev/LeviLamina": "1.6.*"
19+
"github.com/LiteLDev/LeviLamina": "1.7.*"
2020
},
2121
"assets": [
2222
{

xmake.lua

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

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

1111
add_requires("levibuildscript")

0 commit comments

Comments
 (0)