Update README build instructions, change version string
authorMikael Berthe <mikael@lilotux.net>
Sun, 30 Jun 2024 17:41:18 +0200
changeset 280 3c1a1d67511a
parent 279 7fd0abc7b361
child 281 ab781477cc9b
Update README build instructions, change version string
README.md
cmd/version.go
--- a/README.md	Sun Jun 30 17:34:01 2024 +0200
+++ b/README.md	Sun Jun 30 17:41:18 2024 +0200
@@ -23,9 +23,13 @@
 
 madonctl uses Go modules (dependencies have been vendored for convenience).
 
-You can install `madonctl` with the usual Go command:
+You can install the latest `madonctl` release with the usual Go command:
+
+    go install github.com/McKael/madonctl/v3@latest
 
-    go install github.com/McKael/madonctl
+Or if you want the current master branch:
+
+    go install github.com/McKael/madonctl/v3@master
 
 Alternatively:
 
--- a/cmd/version.go	Sun Jun 30 17:34:01 2024 +0200
+++ b/cmd/version.go	Sun Jun 30 17:41:18 2024 +0200
@@ -23,7 +23,7 @@
 }
 
 // VERSION of the madonctl application
-var VERSION = "3.0.1"
+var VERSION = "3.0.1-dev"
 
 var versionCmd = &cobra.Command{
 	Use:   "version",