Skip to content

Commit

Permalink
feat: 0.1.4 is the next
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcmd committed Jan 16, 2025
1 parent 21711ae commit ad51582
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit ad51582

Please sign in to comment.