From f407311b74fa38e62e68e4c77f49f23fea8eae08 Mon Sep 17 00:00:00 2001 From: ShrBox Date: Wed, 19 Jun 2024 11:09:32 +0800 Subject: [PATCH] chore: update xmake.lua --- CHANGELOG.md | 11 +++++++++-- manifest.json | 2 +- tooth.json | 6 +++--- xmake.lua | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3c4f31..092ac45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0] - 2024-06-19 + +### Added + +- Adapt to LeviLamina 0.13.x + ## [0.3.1] - 2024-06-02 -### Fix +### Fixed - Fix vanilla dimension can't create when the number of dimensions exceeds nine. @@ -59,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Release the first version -[Unreleased]: https://github.com/LiteLDev/MoreDimensions/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/LiteLDev/MoreDimensions/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/LiteLDev/MoreDimensions/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/LiteLDev/MoreDimensions/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/LiteLDev/MoreDimensions/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/LiteLDev/MoreDimensions/compare/v0.2.0...v0.2.1 diff --git a/manifest.json b/manifest.json index 9b89a4e..7c38cc5 100644 --- a/manifest.json +++ b/manifest.json @@ -2,6 +2,6 @@ "name": "${pluginName}", "entry": "${pluginFile}", "type": "native", - "version": "0.3.1", + "version": "0.4.0", "author": "LiteLDev" } diff --git a/tooth.json b/tooth.json index 29a9c44..a836e9b 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/LiteLDev/MoreDimensions", - "version": "0.3.0", + "version": "0.4.0", "info": { "name": "MoreDimensions", "description": "More than three dimensions on BDS!", @@ -12,9 +12,9 @@ "plugin" ] }, - "asset_url": "https://github.com/LiteLDev/MoreDimensions/releases/download/v0.3.0/more-dimensions-windows-x64-v0.3.0.zip", + "asset_url": "https://github.com/LiteLDev/MoreDimensions/releases/download/v0.4.0/more-dimensions-windows-x64-v0.4.0.zip", "prerequisites": { - "github.com/LiteLDev/LeviLamina": "0.12.x" + "github.com/LiteLDev/LeviLamina": "0.13.x" }, "files": { "place": [ diff --git a/xmake.lua b/xmake.lua index cdfb7a2..ef3baf7 100644 --- a/xmake.lua +++ b/xmake.lua @@ -2,7 +2,7 @@ add_rules("mode.debug", "mode.release") add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git") -add_requires("levilamina develop") +add_requires("levilamina 0.13.0") if not has_config("vs_runtime") then set_runtimes("MD")