You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build: Git-based versioning and simplified release workflow
- Version now derived from git tags automatically (no manual updates)
- Local dev builds show: {tag}-SNAPSHOT-dirty
- CI branch builds show: {tag}-SNAPSHOT
- CI release builds show: exact tag version (e.g., 0.8.0)
Release workflow simplified:
- Create release in GitHub UI with tag (e.g., 0.8.0)
- CI automatically builds and uploads artifacts to the release
- Branch pushes create/update latest-prerelease
Copy file name to clipboardExpand all lines: build.gradle.kts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ plugins {
6
6
7
7
allprojects {
8
8
group ="com.minekube.connect"
9
-
version ="0.7.0"
9
+
version =gitVersion()
10
10
description =
11
11
"Connects the server/proxy to the global Connect network to reach more players while also supporting online mode server, bungee or velocity mode. Visit https://minekube.com/connect"
0 commit comments