From 33a0eb95cb6e9d80f43d0c2b0e3ece841c6c49fe Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Tue, 31 Dec 2024 23:42:21 +0800 Subject: [PATCH] feat: 0.1.3 is the next --- api/build.gradle.kts | 2 +- server/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/build.gradle.kts b/api/build.gradle.kts index 81d12b7d2..894f8c31d 100644 --- a/api/build.gradle.kts +++ b/api/build.gradle.kts @@ -1,7 +1,7 @@ /** * The current version of allay-api */ -version = "0.3.0" +version = "0.4.0" dependencies { api(libs.network) { diff --git a/server/build.gradle.kts b/server/build.gradle.kts index 252be6f1b..dccf0abbb 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -14,7 +14,7 @@ val isDevBuild = false * This is not the same as the version of allay-api. * Please note that they are two things. */ -version = "0.1.2" + if (isDevBuild) "-dev" else "" +version = "0.1.3" + if (isDevBuild) "-dev" else "" plugins { id("jacoco")