Skip to content

Commit 563eb89

Browse files
committed
Tag 0.6.0
1 parent 57b825d commit 563eb89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/hostmgr/main.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import Logging
44

55
struct HostMgr: ParsableCommand {
66

7+
private var appVersion = "0.6.0"
8+
79
static var configuration = CommandConfiguration(
810
abstract: "A utility for managing VM hosts",
911
subcommands: [
@@ -20,7 +22,7 @@ struct HostMgr: ParsableCommand {
2022
func run() throws {
2123
logger.debug("Starting Up")
2224
if version {
23-
print("1.0.0")
25+
print(appVersion)
2426
} else {
2527
throw CleanExit.helpRequest(self)
2628
}

0 commit comments

Comments
 (0)