From ef1cf920e894b2b311927f712fc6e854cdcc0b79 Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Thu, 8 Feb 2024 02:12:59 +0900 Subject: [PATCH] Sync CLI display version with the actual version 0.0.3 The version was not updated in the last two releases. --- Sources/CLI/CLI.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CLI/CLI.swift b/Sources/CLI/CLI.swift index 1729fa0c..35c579dd 100644 --- a/Sources/CLI/CLI.swift +++ b/Sources/CLI/CLI.swift @@ -5,7 +5,7 @@ struct CLI: AsyncParsableCommand { static let configuration = CommandConfiguration( commandName: "wasmkit", abstract: "WebAssembly Runtime written in Swift.", - version: "0.0.1", + version: "0.0.3", subcommands: [Run.self] ) }