From 5b9b83e235d4332ca98a69fbcdfaee0086a3e6fa Mon Sep 17 00:00:00 2001 From: ShrBox Date: Sat, 25 Jan 2025 22:53:34 +0800 Subject: [PATCH] chore: update tooth.json --- CHANGELOG.md | 5 +++++ tooth.json | 10 +++++----- xmake.lua | 4 ++-- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 376d3a0..eae6a30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). +## [0.9.0] - 2025-01-25 + +- Support LeviLamina 1.0.0 + ## [0.9.0-rc.4] - 2025-01-12 - Support LeviLamina 1.0.0-rc.3 +[0.9.0]: https://github.com/LiteLDev/LegacyMoney/compare/v0.9.0-rc.4...v0.9.0 [0.9.0-rc.4]: https://github.com/LiteLDev/LegacyMoney/releases/tag/v0.9.0-rc.4 diff --git a/tooth.json b/tooth.json index d46a901..1dac68d 100644 --- a/tooth.json +++ b/tooth.json @@ -1,21 +1,21 @@ { "format_version": 2, "tooth": "github.com/LiteLDev/LegacyMoney", - "version": "0.9.0-rc.4", + "version": "0.9.0", "info": { "name": "LegacyMoney", "description": "LLMoney, but adapted to LeviLamina", "author": "LiteLDev", "tags": [ - "mod", - "levilamina", + "type:mod", + "platform:levilamina", "library", "economy" ] }, - "asset_url": "https://github.com/LiteLDev/LegacyMoney/releases/download/v0.9.0-rc.4/LegacyMoney-windows-x64.zip", + "asset_url": "https://github.com/LiteLDev/LegacyMoney/releases/download/v0.9.0/LegacyMoney-windows-x64.zip", "prerequisites": { - "github.com/LiteLDev/LeviLamina": "1.0.0-rc.3" + "github.com/LiteLDev/LeviLamina": "1.0.x" }, "files": { "place": [ diff --git a/xmake.lua b/xmake.lua index b377535..13fc65e 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.3", {configs = {target_type = "server"}}) + add_requires("levilamina 1.0.0", {configs = {target_type = "server"}}) else - add_requires("levilamina 1.0.0-rc.3", {configs = {target_type = "client"}}) + add_requires("levilamina 1.0.0", {configs = {target_type = "client"}}) end add_requires("levibuildscript")