From ad515822ff7ca2e98990a220fbce046cd1bd5e12 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Fri, 17 Jan 2025 01:16:16 +0800 Subject: [PATCH] feat: 0.1.4 is the next --- api/build.gradle.kts | 2 +- build.gradle.kts | 2 +- server/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/build.gradle.kts b/api/build.gradle.kts index bcf24970a..b5dbc892e 100644 --- a/api/build.gradle.kts +++ b/api/build.gradle.kts @@ -1,7 +1,7 @@ /** * The current version of allay-api */ -version = "0.4.0" + if (rootProject.ext.get("isDevBuild") as Boolean) "-dev" else "" +version = "0.5.0" + if (rootProject.ext.get("isDevBuild") as Boolean) "-dev" else "" dependencies { api(libs.network) { diff --git a/build.gradle.kts b/build.gradle.kts index 75857b112..73d509f43 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ ext { * This value should be changed to false before release the next stable version, * and after releasing, change it back to true. */ - set("isDevBuild", false) + set("isDevBuild", true) } tasks.jar { diff --git a/server/build.gradle.kts b/server/build.gradle.kts index 748701efe..e4a1db0a7 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -7,7 +7,7 @@ import java.io.ByteArrayOutputStream * This is not the same as the version of allay-api. * Please note that they are two things. */ -version = "0.1.3" + if (rootProject.ext.get("isDevBuild") as Boolean) "-dev" else "" +version = "0.1.4" + if (rootProject.ext.get("isDevBuild") as Boolean) "-dev" else "" plugins { id("jacoco")