diff --git a/Sources/CommandLine/main.swift b/Sources/CommandLine/main.swift index 7de0ed8..8e0c6aa 100644 --- a/Sources/CommandLine/main.swift +++ b/Sources/CommandLine/main.swift @@ -9,10 +9,13 @@ setbuf(__stdoutp, nil) setbuf(stdout, nil) #endif -struct BinaryDependenciesManager: ParsableCommand { +struct BinaryDependenciesManager: ArgumentParser.ParsableCommand { + /// The version of the binary dependencies manager. + static var version: Version = "0.0.4" static var configuration = CommandConfiguration( - abstract: "Dependencies resolver", + abstract: "Binary dependencies resolver", + version: version.description, subcommands: [ ResolveCommand.self, CleanCommand.self,