diff --git a/tooth.json b/tooth.json index 60dc4b8..34ef953 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/LiteLDev/LegacyParticleAPI", - "version": "0.9.0-rc.1", + "version": "0.9.0-rc.2", "info": { "name": "LegacyParticleAPI", "description": "ParticleAPI ported from LiteLoaderBDS", @@ -12,9 +12,9 @@ "library" ] }, - "asset_url": "https://github.com/LiteLDev/LegacyParticleAPI/releases/download/v0.9.0-rc.1/LegacyParticleAPI-windows-x64.zip", + "asset_url": "https://github.com/LiteLDev/LegacyParticleAPI/releases/download/v0.9.0-rc.2/LegacyParticleAPI-windows-x64.zip", "prerequisites": { - "github.com/LiteLDev/LeviLamina": "1.0.x" + "github.com/LiteLDev/LeviLamina": "1.0.0-rc.1" }, "files": { "place": [ diff --git a/xmake.lua b/xmake.lua index 49cccbd..2a03796 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 develop", {configs = {target_type = "server"}}) + add_requires("levilamina 1.0.0-rc.1", {configs = {target_type = "server"}}) else - add_requires("levilamina develop", {configs = {target_type = "client"}}) + add_requires("levilamina 1.0.0-rc.1", {configs = {target_type = "client"}}) end add_requires("levibuildscript")