Skip to content

Commit c41fc13

Browse files
committed
feat: add CLEANUP server state and bump baseVersion to 0.1.0-platform.14
1 parent ee74b74 commit c41fc13

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

api/src/main/java/app/simplecloud/api/server/ServerState.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ public enum ServerState {
3535
/**
3636
* Server is in the process of shutting down.
3737
*/
38-
STOPPING;
38+
STOPPING,
39+
40+
/**
41+
* Server was shut down and is now being cleaned up.
42+
*/
43+
CLEANUP
44+
;
3945

4046
public static ServerState parse(String state) {
4147
return ServerState.valueOf(state.toUpperCase().replace("SERVER_STATE_", ""));

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
`signing`
1010
}
1111

12-
val baseVersion = "0.1.0-platform.13"
12+
val baseVersion = "0.1.0-platform.14"
1313
val commitHash = System.getenv("COMMIT_HASH")
1414
val isSnapshot = commitHash != null
1515

0 commit comments

Comments
 (0)