From 7ad9686067250cd68beaa6f46200e95918e5cae2 Mon Sep 17 00:00:00 2001 From: ShrBox Date: Sun, 12 Jan 2025 12:24:21 +0800 Subject: [PATCH] chore: switch LeviLamina to 1.0.0-rc.3 --- tooth.json | 6 +++--- xmake.lua | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tooth.json b/tooth.json index 40d005f..d46a901 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/LiteLDev/LegacyMoney", - "version": "0.9.0-rc.3", + "version": "0.9.0-rc.4", "info": { "name": "LegacyMoney", "description": "LLMoney, but adapted to LeviLamina", @@ -13,9 +13,9 @@ "economy" ] }, - "asset_url": "https://github.com/LiteLDev/LegacyMoney/releases/download/v0.9.0-rc.3/LegacyMoney-windows-x64.zip", + "asset_url": "https://github.com/LiteLDev/LegacyMoney/releases/download/v0.9.0-rc.4/LegacyMoney-windows-x64.zip", "prerequisites": { - "github.com/LiteLDev/LeviLamina": "1.0.0-rc.2" + "github.com/LiteLDev/LeviLamina": "1.0.0-rc.3" }, "files": { "place": [ diff --git a/xmake.lua b/xmake.lua index 17dab5a..b377535 100644 --- a/xmake.lua +++ b/xmake.lua @@ -3,9 +3,9 @@ add_rules("mode.debug", "mode.release") add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git") if is_config("target_type", "server") then - add_requires("levilamina 1.0.0-rc.1", {configs = {target_type = "server"}}) + add_requires("levilamina 1.0.0-rc.3", {configs = {target_type = "server"}}) else - add_requires("levilamina 1.0.0-rc.2", {configs = {target_type = "client"}}) + add_requires("levilamina 1.0.0-rc.3", {configs = {target_type = "client"}}) end add_requires("levibuildscript")